mirror of
https://github.com/langgenius/dify.git
synced 2026-04-28 22:48:07 +08:00
11 lines
236 B
TypeScript
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)
|