Files
dify/web/app/components/workflow/skill/skill-page-layout.tsx
2026-01-15 11:24:59 +08:00

15 lines
329 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">
{children}
</div>
)
}
export default React.memo(SkillPageLayout)