mirror of
https://github.com/langgenius/dify.git
synced 2026-04-23 12:16:11 +08:00
14 lines
267 B
TypeScript
14 lines
267 B
TypeScript
import type { FC } from 'react'
|
|
import * as React from 'react'
|
|
|
|
const SkillDocEditor: FC = () => {
|
|
return (
|
|
<div
|
|
className="h-full w-full rounded-md bg-white"
|
|
data-component="skill-doc-editor"
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default React.memo(SkillDocEditor)
|