| 1 | // @enablePreserveExistingMemoizationGuarantees |
| 2 | import {useMemo} from 'react'; |
| 3 | import {identity, makeObject_Primitives, mutate} from 'shared-runtime'; |
| 4 | |
| 5 | function Component(props) { |
| 6 | const object = useMemo(() => makeObject_Primitives(), []); |
| 7 | identity(object); |
| 8 | return object; |
| 9 | } |
| 10 | |
| 11 | export const FIXTURE_ENTRYPOINT = { |
| 12 | fn: Component, |
| 13 | params: [{}], |
| 14 | }; |