## Input ```javascript import * as SharedRuntime from 'shared-runtime'; function Component({name}) { const localVar = SharedRuntime; return hello world {name}; } export const FIXTURE_ENTRYPOINT = { fn: Component, params: [{name: 'sathya'}], }; ``` ## Code ```javascript import { c as _c } from "react/compiler-runtime"; import * as SharedRuntime from "shared-runtime"; function Component(t0) { const $ = _c(2); const { name } = t0; let t1; if ($[0] !== name) { t1 = hello world {name}; $[0] = name; $[1] = t1; } else { t1 = $[1]; } return t1; } export const FIXTURE_ENTRYPOINT = { fn: Component, params: [{ name: "sathya" }], }; ``` ### Eval output (kind: ok)
{"children":["hello world ","sathya"]}