import {useState} from 'react'; function Component() { const [count, setCount] = useState(0); return (
{/** * The scope for the
); } export const FIXTURE_ENTRYPOINT = { fn: Component, params: [{}], };