Files
dify/web/app/components/workflow/skill/start-tab/index.tsx
yyh 8326b9e3e5 refactor(skill): remove React.FC type annotations from all components
Replace FC<Props> pattern with direct props typing in function parameters
for better TypeScript inference and modern React best practices.
2026-01-28 23:34:08 +08:00

17 lines
397 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="h-full w-full overflow-auto bg-components-panel-bg">
<CreateImportSection />
<SkillTemplatesSection />
</div>
)
}
export default memo(StartTabContent)