feat: graph skill main struct

This commit is contained in:
Joel
2026-01-14 15:40:30 +08:00
parent 4887c9ea6f
commit 6b55e6781f
7 changed files with 96 additions and 10 deletions

View 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)