import React from 'react'; import GuestLayout from '@/Layouts/GuestLayout'; import { Head, Link, useForm } from '@inertiajs/react'; export default function VerifyEmail({ status }: { status?: string }) { const { post, processing } = useForm({}); const submit = (e: React.FormEvent) => { e.preventDefault(); post(route('verification.send')); }; return (

Check your email

We sent a verification link to your email address. Click the link to activate your account.

{status === 'verification-link-sent' && (
A new verification link has been sent to your email.
)}
Sign out
); }