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

9 lines
215 B
TypeScript
Raw Normal View History

2021-12-10 20:54:28 -03:00
import type { AppProps } from 'next/app'
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-10 20:54:28 -03:00
return <Component {...pageProps} />
}