11 lines
271 B
React
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'}],
|
|
};
|