1
0
Fork 0

default error page

This commit is contained in:
Enoch Riese 2022-07-14 07:08:41 -05:00
parent 9bcfa4f39b
commit 9abea28b6e
6 changed files with 97 additions and 72 deletions

View file

@ -3,8 +3,8 @@ import { useTranslation } from 'next-i18next'
export default function ({resetGist, undoGist}) {
const {t} = useTranslation(['app'])
return (<>
return (<div className="flex flex-row gap-4 my-4">
<button className="btn btn-primary" onClick={undoGist}>{t('undo')}</button>
<button className="btn btn-primary" onClick={resetGist}>{t('reset_all')}</button>
</>
</div>
)}