Small Website to play Web-based games.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

9 rader
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