Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/default-param-calls-global-function.js
T
2026-08-27 21:09:14 +00:00

11 lines
193 B
JavaScript

import {identity} from 'shared-runtime';
function Component(x = identity([() => {}, true, 42, 'hello'])) {
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [],
};