next.js/examples/with-particles/pages/_app.tsx
_app.tsx9 lines192 B
import "../styles/globals.css";
import type { AppProps } from "next/app";

function MyApp({ Component, pageProps }: AppProps) {
  return <Component {...pageProps} />;
}

export default MyApp;
Quest for Codev2.0.0
/
SIGN IN