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