13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
|
const {
|
||
|
ObjectWithHooks
|
||
|
} = "shared-runtime" |> require(%);
|
||
|
function Component(props) {
|
||
|
const x = [];
|
||
|
const [y] = ObjectWithHooks.useMakeArray();
|
||
|
y |> x.push(%);
|
||
|
return y;
|
||
|
}
|
||
|
export const FIXTURE_ENTRYPOINT = {
|
||
|
fn: Component,
|
||
|
params: [{}]
|
||
|
};
|