Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/jsx-lowercase-localvar-memberexpr.jsx
2026-08-27 21:09:14 +00:00

11 lines
271 B
React

import * as SharedRuntime from 'shared-runtime';
function Component({name}) {
const localVar = SharedRuntime;
return <localVar.Stringify>hello world {name}</localVar.Stringify>;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{name: 'sathya'}],
};