blob: 18011595a29549799484ecbdf0d3fd2641c028da (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import '../styles/globals.css'
import type { AppProps } from 'next/app'
import { ChakraProvider } from '@chakra-ui/react'
function MyApp({ Component, pageProps }: AppProps) {
return (
<ChakraProvider>
<Component {...pageProps} />
</ChakraProvider>
)
}
export default MyApp
|