16 lines
387 B
JavaScript
16 lines
387 B
JavaScript
'use client'
|
|
|
|
import { useRef } from 'react'
|
|
import { Provider } from 'react-redux'
|
|
import { store } from 'store'
|
|
|
|
export default function StoreProvider({ children }) {
|
|
const storeRef = useRef()
|
|
if (!storeRef.current) {
|
|
// Create the store instance the first time this renders
|
|
storeRef.current = store
|
|
}
|
|
|
|
return <Provider store={storeRef.current}>{children}</Provider>
|
|
}
|