import React, { type JSX } from 'react'; import { useTranslation } from 'next-i18next'; type Props = { onClick?: () => void; disabled?: boolean; type?: 'button' | 'submit' | 'reset'; }; const AdminUpdateButtonRow = (props: Props): JSX.Element => { const { t } = useTranslation('admin'); return (