WIP: app -> pages

This commit is contained in:
2023-06-14 22:25:00 +04:00
parent a4bed55547
commit d7ed76ae6e
14 changed files with 109 additions and 82 deletions

12
frontend/pages/_app.js Normal file
View File

@@ -0,0 +1,12 @@
import { ChakraProvider } from '@chakra-ui/react'
import Layout from '~/components/layout'
export default function MyApp({ Component, pageProps }) {
return (
<ChakraProvider>
<Layout>
<Component {...pageProps} />
</Layout>
</ChakraProvider>
)
}