next.js/examples/with-mongodb/pages/_app.tsx
_app.tsx7 lines181 B
import "@/styles/globals.css";
import type { AppProps } from "next/app";

export default function App({ Component, pageProps }: AppProps) {
  return <Component {...pageProps} />;
}
Quest for Codev2.0.0
/
SIGN IN