mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 10:28:10 +08:00
feat: add main skill struct
This commit is contained in:
17
web/app/components/workflow/skill/skill-page-layout.tsx
Normal file
17
web/app/components/workflow/skill/skill-page-layout.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user