Skip to content

Instantly share code, notes, and snippets.

View KirdesMF's full-sized avatar
🏠
Working from home

KirdesGrvl KirdesMF

🏠
Working from home
View GitHub Profile
@KirdesMF
KirdesMF / useForm.jsx
Last active August 17, 2022 22:15
React Hooks useForm
import { useState } from 'react';
import { checkErrorsInput, checkErrorsForm } from 'utils/checkForm';
const useForm = (
initState = {
errors: {},
values: {},
isSubmitted: false,
isFormValid: false,
}