17 lines
No EOL
344 B
JavaScript
17 lines
No EOL
344 B
JavaScript
import { useHook, identity } from "shared-runtime";
|
|
function Component(props) {
|
|
let x = 42;
|
|
if (props.cond) {
|
|
x = [];
|
|
}
|
|
useHook(); // intersperse a hook call to prevent memoization of x
|
|
x |> identity(%);
|
|
const y = [x];
|
|
return [y];
|
|
}
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: Component,
|
|
params: [{
|
|
value: "sathya"
|
|
}]
|
|
}; |