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