File size: 292 Bytes
f0743f4 | 1 2 3 4 5 6 7 | import { createFormContext } from './CustomFormContext';
import type { ChatFormValues } from '~/common';
const { CustomFormProvider, useCustomFormContext } = createFormContext<ChatFormValues>();
export { CustomFormProvider as ChatFormProvider, useCustomFormContext as useChatFormContext };
|