'use client' import type { FC } from 'react' import * as React from 'react' import { useTranslation } from 'react-i18next' import Home from '@/app/components/base/icons/src/vender/workflow/Home' import { cn } from '@/utils/classnames' type StartTabItemProps = { isActive: boolean onClick: () => void } const StartTabItem: FC = ({ isActive, onClick, }) => { const { t } = useTranslation('workflow') return (
) } export default React.memo(StartTabItem)