import { StoreProvider, useStore } from './store' const Counter = () => { const [state, setState] = useStore(); const increment = () => setState(old => ({...old, count: old.count + 1})); const decrement = () => setState(old => ({...old, count: old.count - 1})); return (
{state.count}
); }; const App = () => { return ( ); };