import React from 'react' import ApplicationLogo from '@/Components/Defaults/ApplicationLogo' import { Link } from '@inertiajs/react' import { Flowbite } from 'flowbite-react' const customTheme = { button: { color: { primary: 'bg-blue-700 hover:bg-blue-600 text-white', }, }, dropdown: { color: { primary: 'bg-blue-700 hover:bg-blue-600 text-white', }, }, } export default function Guest({ children }) { return (
{children}
) }