import { NextPage } from "next"; const AuthLayout: NextPage< Readonly<{ children: React.ReactNode; }> > = ({ children }) => (
{children}
); export default AuthLayout;