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