diff --git a/web/app/components/workflow/nodes/llm/components/config-prompt.tsx b/web/app/components/workflow/nodes/llm/components/config-prompt.tsx new file mode 100644 index 0000000000..1fe0873867 --- /dev/null +++ b/web/app/components/workflow/nodes/llm/components/config-prompt.tsx @@ -0,0 +1,17 @@ +'use client' +import type { FC } from 'react' +import React from 'react' + +type Props = { + prompt: string +} + +const ConfigPrompt: FC = ({ + prompt, +}) => { + return ( +
+
+ ) +} +export default React.memo(ConfigPrompt)