Files
link-free/src/pages/_app.tsx

14 lines
321 B
TypeScript
Raw Normal View History

2021-12-10 20:54:28 -03:00
import type { AppProps } from 'next/app'
2021-12-12 23:45:41 -03:00
import { DataProvider } from '../contexts/DataContext'
2021-12-11 14:22:00 -03:00
import { globalStyles } from '../styles/globals'
2021-12-10 20:54:28 -03:00
export default function App({ Component, pageProps }: AppProps) {
2021-12-11 14:22:00 -03:00
globalStyles()
2021-12-12 23:45:41 -03:00
return (
<DataProvider>
<Component {...pageProps} />
</DataProvider>
)
2021-12-10 20:54:28 -03:00
}