Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created July 15, 2021 16:53
Show Gist options
  • Save DZuz14/f49ef06ef71dd989585f6a0f0c259d6f to your computer and use it in GitHub Desktop.
Save DZuz14/f49ef06ef71dd989585f6a0f0c259d6f to your computer and use it in GitHub Desktop.
hook2
import React, { useState, useEffect } from 'react'
// form will be the JSON file
const FormHook = (form) => {
const [formData, setFormData] = useState(form)
//
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment