All files / src/components/Sidebar/utils elements.tsx

0% Statements 0/3
100% Branches 0/0
100% Functions 0/0
0% Lines 0/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49                                                                                                 
import {
  CollectionsBookmarkRounded,
  DataThresholdingRounded,
  LayersRounded,
  SlowMotionVideoRounded,
  TerminalRounded,
  TipsAndUpdatesRounded,
  AddAlert,
} from "@mui/icons-material";
import { routes } from "../../../routes";
 
export const elements = [
  {
    to: routes.HOME,
    label: "Playbooks",
    icon: <CollectionsBookmarkRounded />,
  },
  {
    to: routes.WORKFLOWS,
    label: "Workflows",
    icon: <LayersRounded />,
  },
  {
    to: routes.WORKFLOW_EXECUTIONS_LIST,
    label: "Workflow Executions",
    icon: <SlowMotionVideoRounded />,
  },
  {
    to: routes.PLAYBOOK_EXECUTIONS_LIST,
    label: "Playbook Executions",
    icon: <SlowMotionVideoRounded />,
  },
  {
    to: routes.PLAYGROUND,
    label: "Sample Playbooks",
    icon: <TerminalRounded />,
  },
  {
    to: routes.DATA_SOURCES,
    label: "Integrations",
    icon: <DataThresholdingRounded />,
  },
  {
    to: routes.DYNAMIC_ALERTS,
    label: "Dynamic Alerts",
    icon: <AddAlert />,
  },
];