chat / client /src /Providers /ChatFormContext.tsx
Zhitomir's picture
chat init
aa2e6af
Raw
History Blame Contribute Delete
292 Bytes
import { createFormContext } from './CustomFormContext';
import type { ChatFormValues } from '~/common';
const { CustomFormProvider, useCustomFormContext } = createFormContext<ChatFormValues>();
export { CustomFormProvider as ChatFormProvider, useCustomFormContext as useChatFormContext };