packages/react/src/hooks/useForm.ts (6 lines of code) (raw):

import { useContext } from 'react' import { Form } from '@formily/core' import { FormContext } from '../shared' export const useForm = <T extends object = any>(): Form<T> => { return useContext(FormContext) }