const AuthLayout = ({ children } : { children: React.ReactNode }) => { return (
{children}
); } export default AuthLayout;