friends-best/pages/_app.tsx

8 lines
187 B
TypeScript
Raw Normal View History

2021-07-23 16:14:54 +00:00
import '../styles/globals.css'
import type { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp