Files
dify/web/app/components/workflow/skill/editor-tab-item.tsx
2026-01-14 16:28:14 +08:00

14 lines
259 B
TypeScript

import type { FC } from 'react'
import * as React from 'react'
const EditorTabItem: FC = () => {
return (
<div
className="h-7 w-24 rounded bg-gray-100"
data-component="editor-tab-item"
/>
)
}
export default React.memo(EditorTabItem)