Files
2026-08-27 21:09:14 +00:00

15 lines
215 B
JavaScript

function Foo() {
const getX = () => x;
console.log(getX());
let x = 4;
x += 5;
return <Stringify getX={getX} shouldInvokeFns={true} />;
}
export const FIXTURE_ENTRYPOINT = {
fn: Foo,
params: [],
};