File size: 240 Bytes
d96df0e
53bd884
d96df0e
53bd884
d96df0e
53bd884
d96df0e
53bd884
d96df0e
53bd884
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import '../styles/globals.css'
import { CookiesProvider } from 'react-cookie'

function MyApp({ Component, pageProps }) {
  return (
    <CookiesProvider>
      <Component {...pageProps} />
    </CookiesProvider>
  )
}

export default MyApp