import ApplicationLogo from "@/components/application-logo"; import { Link } from "@inertiajs/react"; import { PropsWithChildren } from "react"; export default function Guest({ children }: PropsWithChildren) { return (
{children}
); }