next.js/examples/with-react-hook-form/pages/_app.tsx
_app.tsx7 lines183 B
import type { AppProps } from "next/app";
import "../styles/global.css";

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