import { Head } from '@inertiajs/react'; import { PageProps } from '@/types'; import Guest from '@/Layouts/GuestLayout'; import Authenticated from '@/Layouts/AuthenticatedLayout'; const Help = ({ auth }: PageProps) => { const renderAboutContent = () => (
) return ( <>
{auth.user ? ( {renderAboutContent()} ) : ( <> {renderAboutContent()} )}
); } export default Help;