Chakra and globals

This commit is contained in:
2023-06-14 21:21:55 +04:00
parent 42c5b438c3
commit 2fbdc4cd44
10 changed files with 1872 additions and 23 deletions

View File

@@ -0,0 +1,9 @@
import { CacheProvider, ChakraProvider } from '~/app/ui'
export function Providers({ children }) {
return (
<CacheProvider>
<ChakraProvider>{children}</ChakraProvider>
</CacheProvider>
)
}