mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
17 lines
398 B
TypeScript
17 lines
398 B
TypeScript
import AlertChannels from 'container/AllAlertChannels';
|
|
import GeneralSettings from 'container/GeneralSettings';
|
|
import SettingsWrapper from 'container/SettingsWrapper';
|
|
import React from 'react';
|
|
|
|
const AllAlertChannels = (): JSX.Element => (
|
|
<SettingsWrapper
|
|
{...{
|
|
AlertChannels,
|
|
General: GeneralSettings,
|
|
defaultRoute: 'Alert Channels',
|
|
}}
|
|
/>
|
|
);
|
|
|
|
export default AllAlertChannels;
|