parent
5cf17a3e0f
commit
9c81d818ed
7 changed files with 8170 additions and 3870 deletions
@ -1,3 +1,3 @@ |
||||
{ |
||||
"extends": ["next", "next/core-web-vitals"] |
||||
"extends": ["next", "next/core-web-vitals", "prettier"] |
||||
} |
||||
|
@ -0,0 +1,4 @@ |
||||
{ |
||||
"semi": true, |
||||
"singleQuote": true |
||||
} |
@ -1,2 +1,3 @@ |
||||
/// <reference types="next" />
|
||||
/// <reference types="next/types/global" />
|
||||
/// <reference types="next/image-types/global" />
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,14 @@ |
||||
import '../styles/globals.css' |
||||
import type { AppProps } from 'next/app' |
||||
import type { AppProps } from 'next/app'; |
||||
import { ChakraProvider } from '@chakra-ui/react'; |
||||
|
||||
import '../styles/globals.css'; |
||||
|
||||
function MyApp({ Component, pageProps }: AppProps) { |
||||
return <Component {...pageProps} /> |
||||
return ( |
||||
<ChakraProvider> |
||||
<Component {...pageProps} /> |
||||
</ChakraProvider> |
||||
); |
||||
} |
||||
export default MyApp |
||||
|
||||
export default MyApp; |
||||
|
Loading…
Reference in new issue