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