Files
pasargad/src/assets/constants/routeFactory/index.ts
T

14 lines
234 B
TypeScript
Raw Normal View History

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