Files
dify/web/app/components/workflow/skill/main.tsx
2026-01-14 15:41:02 +08:00

13 lines
265 B
TypeScript

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