Design system.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

_app.tsx 166 B

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