next-app-with-squiggle/pages/_app.tsx
2022-08-01 02:52:49 -04:00

9 lines
188 B
TypeScript

import '../styles/globals.css'
import type { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp