mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
38 lines
1.4 KiB
TypeScript
38 lines
1.4 KiB
TypeScript
import { Tab } from '@mui/material';
|
|
import { Navigate, Route, Routes } from 'react-router-dom';
|
|
|
|
import SettingsApplication from './SettingsApplication';
|
|
import SettingsCustomization from './SettingsCustomization';
|
|
import SettingsEntities from './SettingsEntities';
|
|
import SettingsScheduler from './SettingsScheduler';
|
|
import type { FC } from 'react';
|
|
import { RouterTabs, useRouterTab, useLayoutTitle } from 'components';
|
|
import { useI18nContext } from 'i18n/i18n-react';
|
|
|
|
const Settings: FC = () => {
|
|
const { LL } = useI18nContext();
|
|
const { routerTab } = useRouterTab();
|
|
|
|
useLayoutTitle(LL.SETTINGS_OF(''));
|
|
|
|
return (
|
|
<>
|
|
<RouterTabs value={routerTab}>
|
|
<Tab value="application" label={LL.APPLICATION_SETTINGS()} />
|
|
<Tab value="customization" label={LL.CUSTOMIZATIONS()} />
|
|
<Tab value="scheduler" label={LL.SCHEDULER()} />
|
|
<Tab value="customentities" label={LL.CUSTOM_ENTITIES(0)} />
|
|
</RouterTabs>
|
|
<Routes>
|
|
<Route path="application" element={<SettingsApplication />} />
|
|
<Route path="customization" element={<SettingsCustomization />} />
|
|
<Route path="scheduler" element={<SettingsScheduler />} />
|
|
<Route path="customentities" element={<SettingsEntities />} />
|
|
<Route path="/*" element={<Navigate replace to="application" />} />
|
|
</Routes>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Settings;
|