mirror of
https://github.com/langgenius/dify.git
synced 2026-05-02 08:28:03 +08:00
13 lines
265 B
TypeScript
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)
|