Layout scaffolding for Web apps.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

9 行
188 B

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