'use client' import { ReactElement } from 'react' import Navbar from '@/components/auth/Navbar' type Props = { //params: { locale: string }; children: ReactElement; } const AuthLayout = ({ children }: Props) => { return ( <>
{children}
) } export default AuthLayout