Design system.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

_app.tsx 198 B

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