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

10 行
166 B

  1. import type { AppProps } from 'next/app';
  2. const App = ({ Component, pageProps }: AppProps) => {
  3. return (
  4. <Component {...pageProps} />
  5. );
  6. };
  7. export default App;