mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-12 12:11:28 +08:00

* feat: add integrations to the side-nav for cloud users * feat: change the route from integrations/installed to /integrations * feat: light mode table color * feat: increase the width of the integrations panel by 25 percent * feat: added telemetry constants and page view * feat: added telemetry events for integrations * feat: address review comments
16 lines
406 B
TypeScript
16 lines
406 B
TypeScript
import { TabRoutes } from 'components/RouteTab/types';
|
|
import ROUTES from 'constants/routes';
|
|
import { Compass } from 'lucide-react';
|
|
import Integrations from 'pages/Integrations';
|
|
|
|
export const installedIntegrations: TabRoutes = {
|
|
Component: Integrations,
|
|
name: (
|
|
<div className="tab-item">
|
|
<Compass size={16} /> Integrations
|
|
</div>
|
|
),
|
|
route: ROUTES.INTEGRATIONS,
|
|
key: ROUTES.INTEGRATIONS,
|
|
};
|