Files
dify/web/app/components/workflow/skill/skill-doc-editor.tsx
2026-01-15 11:22:43 +08:00

14 lines
286 B
TypeScript

import type { FC } from 'react'
import * as React from 'react'
const SkillDocEditor: FC = () => {
return (
<div
className="h-full w-full overflow-y-auto bg-components-panel-bg"
data-component="skill-doc-editor"
/>
)
}
export default React.memo(SkillDocEditor)