Design system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 rivejä
198 B

  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;