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.

_app.tsx 235B

12345678910
  1. import { AppProps } from "next/app"
  2. import { globalStyles } from "styles"
  3. import "styles/globals.css"
  4. function MyApp({ Component, pageProps }: AppProps) {
  5. globalStyles()
  6. return <Component {...pageProps} />
  7. }
  8. export default MyApp