rsnext/examples/with-zustand/pages/_app.js
Munawwar dd029f559f
updated zustand example for 3.5.4+ interface change (#27229)
## Documentation / Examples

- [✓] Make sure the linting passes
2021-07-16 13:41:52 +00:00

10 lines
290 B
JavaScript

import { useCreateStore, Provider } from '../lib/store'
export default function App({ Component, pageProps }) {
const createStore = useCreateStore(pageProps.initialZustandState)
return (
<Provider createStore={createStore}>
<Component {...pageProps} />
</Provider>
)
}