mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-06 04:21:55 +00:00
7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import { AppProps } from 'next/app'
|
|
import '../styles/index.css'
|
|
|
|
export default function MyApp({ Component, pageProps }: AppProps) {
|
|
return <Component {...pageProps} />
|
|
}
|