1
0
Fork 0

Added some finishing touches here and there

This commit is contained in:
Techognito 2025-08-26 18:02:25 +02:00
parent ddd77d9f82
commit 656b1ba417
42 changed files with 9344 additions and 30 deletions

View file

@ -0,0 +1,13 @@
import { useTranslation, withTranslation, Trans } from 'react-i18next';
export default function StatisticsView() {
const { t, i18n } = useTranslation();
return (
<h1>{t ('statistics')}</h1>
)
}