34 lines
711 B
JavaScript
34 lines
711 B
JavaScript
// @enablePreserveExistingMemoizationGuarantees:false
|
|
import {Stringify, identity, makeArray, toJSON} from 'shared-runtime';
|
|
import {useMemo} from 'react';
|
|
|
|
function Component(props) {
|
|
const propsString = useMemo(() => toJSON(props), [props]);
|
|
if (propsString.length <= 2) {
|
|
return null;
|
|
}
|
|
|
|
const linkProps = {
|
|
url: identity(propsString),
|
|
};
|
|
const x = {};
|
|
|
|
// reactive scope ends at makeArray, as it is inferred as maybeMutate
|
|
return (
|
|
<Stringify
|
|
link={linkProps}
|
|
val1={[1]}
|
|
val2={[2]}
|
|
val3={[3]}
|
|
val4={[4]}
|
|
val5={[5]}>
|
|
{makeArray(x, 2)}
|
|
</Stringify>
|
|
);
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: Component,
|
|
params: [{val: 2}],
|
|
};
|