import { useState } from 'react'; const Page = () => { const [value, setValue] = useState(0); return ( setValue(value + 1)} /> ); }; const Counter = (props) => { const { value, increase } = props; return (
{value} {' '}
); }; export default Page;