
* feat: make new connections refact: context groups | feat: area detection and a bunch of small things. hate yourself for this massive commit * refact: initial RTK setup for Notifications * refact: removed Notification Context
8 lines
215 B
TypeScript
8 lines
215 B
TypeScript
'use client'
|
|
|
|
import { store } from './store'
|
|
import { Provider } from 'react-redux'
|
|
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
|
return <Provider store={store}>{children}</Provider>
|
|
} |