Skip to content

Instantly share code, notes, and snippets.

@kazuooooo
Created August 27, 2020 03:26
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/5fe8ac71148eab2a90adf75a4828cdc1 to your computer and use it in GitHub Desktop.
Save kazuooooo/5fe8ac71148eab2a90adf75a4828cdc1 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 error */
}}
/>
)
}
export default ContactPage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment