14 lines
234 B
TypeScript
14 lines
234 B
TypeScript
|
|
import { useTranslation } from 'react-i18next';
|
||
|
|
const { t } = useTranslation('routes');
|
||
|
|
|
||
|
|
export default {
|
||
|
|
home: {
|
||
|
|
title: t('home'),
|
||
|
|
route: () => '/',
|
||
|
|
},
|
||
|
|
about: {
|
||
|
|
title: t('about'),
|
||
|
|
route: () => '/about',
|
||
|
|
},
|
||
|
|
};
|