Files

10 lines
147 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
function Component() {
const [x, setX] = React.useState(1);
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [],
};