2022-04-05 00:06:13 +05:30

33 lines
736 B
TypeScript

import RouteTab from 'components/RouteTab';
import ROUTES from 'constants/routes';
import AlertChannels from 'container/AllAlertChannels';
import GeneralSettings from 'container/GeneralSettings';
import history from 'lib/history';
import React from 'react';
function SettingsPage(): JSX.Element {
const pathName = history.location.pathname;
return (
<RouteTab
{...{
routes: [
{
Component: GeneralSettings,
name: 'General',
route: ROUTES.SETTINGS,
},
{
Component: AlertChannels,
name: 'Alert Channels',
route: ROUTES.ALL_CHANNELS,
},
],
activeKey: pathName === ROUTES.ALL_CHANNELS ? 'Alert Channels' : 'General',
}}
/>
);
}
export default SettingsPage;