import React from 'react' import Button from '@/app/components/base/button' import { useTranslation } from 'react-i18next' import { useParams } from 'next/navigation' import { RiArrowRightLine } from '@remixicon/react' import Link from 'next/link' type ActionsProps = { disabled?: boolean handleNextStep: () => void showSelect?: boolean } const Actions = ({ disabled, handleNextStep, }: ActionsProps) => { const { t } = useTranslation() const { datasetId } = useParams() return (
) } export default React.memo(Actions)