mirror of
https://github.com/langgenius/dify.git
synced 2026-05-04 01:18:05 +08:00
14 lines
259 B
TypeScript
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)
|