mirror of
https://github.com/langgenius/dify.git
synced 2026-03-03 23:06:20 +08:00
17 lines
411 B
TypeScript
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)
|