Skip to content

Instantly share code, notes, and snippets.

@kazuooooo
Created August 27, 2020 03:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kazuooooo/db487d1d14e9ec543b0196d7fe203e0b to your computer and use it in GitHub Desktop.
Save kazuooooo/db487d1d14e9ec543b0196d7fe203e0b to your computer and use it in GitHub Desktop.
import React from "react"
import { ContactForm } from '@kazuwombat/fire-form'
import config from '../firebaseConfig'
const ContactPage = () => {
return (
<ContactForm
config={config}
successCallback={() => { alert("success :)") /* You need to handle success. */
}}
errorCallback={(error) => {alert(error) /* You need to handle success. */
}}
/>
)
}
export default ContactPage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment