### What problem does this PR solve? Feat: Add FormDrawer to agent page. #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
import { RAGFlowNodeType } from '@/interfaces/database/flow';
|
|
import { createContext } from 'react';
|
|
|
|
export const FlowFormContext = createContext<RAGFlowNodeType | undefined>(
|
|
undefined,
|
|
);
|