import React from 'react' import Button from '@/app/components/base/button' import { useTranslation } from 'react-i18next' import { RiArrowLeftLine } from '@remixicon/react' type ActionsProps = { onBack: () => void onProcess: () => void } const Actions = ({ onBack, onProcess, }: ActionsProps) => { const { t } = useTranslation() return (
) } export default React.memo(Actions)