Files
dify/web/app/components/workflow/skill/start-tab/index.tsx

17 lines
411 B
TypeScript

'use client'
import { memo } from 'react'
import CreateImportSection from './create-import-section'
import SkillTemplatesSection from './skill-templates-section'
const StartTabContent = () => {
return (
<div className="flex h-full w-full flex-col overflow-auto bg-components-panel-bg">
<CreateImportSection />
<SkillTemplatesSection />
</div>
)
}
export default memo(StartTabContent)