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