mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 02:18:08 +08:00
feat: graph skill main struct
This commit is contained in:
12
web/app/components/workflow/skill/main.tsx
Normal file
12
web/app/components/workflow/skill/main.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
'use client'
|
||||
import type { FC } from 'react'
|
||||
import * as React from 'react'
|
||||
|
||||
const SkillMain: FC = () => {
|
||||
return (
|
||||
<div className="h-full bg-workflow-canvas-workflow-top-bar-1 pl-3 pt-[52px]">
|
||||
Main
|
||||
</div>
|
||||
)
|
||||
}
|
||||
export default React.memo(SkillMain)
|
||||
Reference in New Issue
Block a user