Files
dify/web/app/components/workflow/skill/skill-body/layout/skill-page-layout.tsx

15 lines
337 B
TypeScript

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