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