mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
18 lines
383 B
TypeScript
18 lines
383 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 => {
|
||
|
|
return (
|
||
|
|
<SettingsWrapper
|
||
|
|
{...{
|
||
|
|
AlertChannels,
|
||
|
|
General: GeneralSettings,
|
||
|
|
}}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default AllAlertChannels;
|