import { toast, Toaster } from '@redwoodjs/web/dist/toast'
const ContactPage = () => {
const [create, { loading, error }] = useMutation(CREATE_CONTACT, {
onCompleted: () => {
// Use Case - Success
toast.success('Thank you for you submission!')
},
})
}
// HTML
<Toaster />