import GuestLayout from '@/Layouts/GuestLayout'
import PrimaryButton from '@/Components/PrimaryButton'
import { Head, Link, useForm } from '@inertiajs/react'
import { FormEventHandler } from 'react'
import { logout_path, verification_send_path } from '@/routes'
export default function VerifyEmail({ status }: { status?: string }) {
const { post, processing } = useForm({})
const submit: FormEventHandler = (e) => {
e.preventDefault()
post(verification_send_path())
}
return (