mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-07 11:08:52 +01:00
7 lines
292 B
TypeScript
7 lines
292 B
TypeScript
|
|
import { createFormContext } from './CustomFormContext';
|
||
|
|
import type { ChatFormValues } from '~/common';
|
||
|
|
|
||
|
|
const { CustomFormProvider, useCustomFormContext } = createFormContext<ChatFormValues>();
|
||
|
|
|
||
|
|
export { CustomFormProvider as ChatFormProvider, useCustomFormContext as useChatFormContext };
|