chore: add translations

This commit is contained in:
Tom (plebeius.eth)
2024-05-31 17:09:20 +02:00
parent c41c1e76cc
commit d4927e7162
39 changed files with 216 additions and 40 deletions
@@ -47,11 +47,11 @@ const ReturnButton = ({ address }: BoardButtonsProps) => {
};
const RefreshButton = () => {
const { t } = useTranslation();
const reset = useFeedResetStore((state) => state.reset);
return (
<button className='button' onClick={() => reset && reset()}>
Refresh
{t('refresh')}
</button>
);
};