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

11 lines
236 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" />
)
}
export default React.memo(SkillDocEditor)