erp-platform/ui/src/views/Dashboard.tsx

17 lines
380 B
TypeScript
Raw Normal View History

2025-05-06 06:45:49 +00:00
import { useLocalization } from '@/utils/hooks/useLocalization'
import { Helmet } from 'react-helmet'
2025-08-11 06:34:44 +00:00
const Dashboard = () => {
2025-05-06 06:45:49 +00:00
const { translate } = useLocalization()
return (
2025-08-14 07:10:56 +00:00
<Helmet
2025-09-13 11:46:34 +00:00
titleTemplate="%s | Sözsoft Kurs Platform"
2025-08-14 07:10:56 +00:00
title={translate('::' + 'Dashboard')}
2025-09-13 11:46:34 +00:00
defaultTitle="Sözsoft Kurs Platform"
2025-08-14 07:10:56 +00:00
></Helmet>
2025-05-06 06:45:49 +00:00
)
}
2025-08-11 06:34:44 +00:00
export default Dashboard