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

18 lines
381 B
TypeScript

import type { FC, PropsWithChildren } from 'react'
import * as React from 'react'
type SkillPageLayoutProps = PropsWithChildren
const SkillPageLayout: FC<SkillPageLayoutProps> = ({ children }) => {
return (
<div
className="flex h-full gap-3"
data-component="skill-page-layout"
>
{children}
</div>
)
}
export default React.memo(SkillPageLayout)