import ApplicationLogo from '@/Components/ApplicationLogo'; import { Link } from '@inertiajs/react'; import { PropsWithChildren } from 'react'; export default function Guest({ children }: PropsWithChildren) { return (
{children}
); }