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

18 lines
361 B
TypeScript

import type { FC, PropsWithChildren } from 'react'
import * as React from 'react'
type EditorTabsProps = PropsWithChildren
const EditorTabs: FC<EditorTabsProps> = ({ children }) => {
return (
<div
className="flex items-center gap-2"
data-component="editor-tabs"
>
{children}
</div>
)
}
export default React.memo(EditorTabs)