useFormState.tsx 222 B

123456789
  1. import React, { useContext } from 'react';
  2. import { FormStateContext } from '../context';
  3. function useFormState() {
  4. const formState = useContext(FormStateContext);
  5. return formState;
  6. }
  7. export default useFormState;