mirror of
https://github.com/langgenius/dify.git
synced 2026-02-13 16:00:55 -05:00
15 lines
329 B
TypeScript
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)
|