blob: 2dc82559430e7ce7c5e75d7682a5054afad0b339 (
plain)
1
2
3
4
5
6
7
|
import '~/common/styles/fonts/Inter/inter.css'
import '~/common/styles/globals.css'
import type { AppProps } from "next/app"
export default function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
|