Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

redwood toaster

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 />
 
PREVIOUS NEXT
Tagged: #redwood #toaster
ADD COMMENT
Topic
Name
3+8 =