fleet/frontend/pages/ManageControlsPage/MacOSSettings/MacOSSettingsNavItems.tsx
Gabriel Hernandez a11e2cce3d
implement UI for uploading, downloading, deleting macOS profiles (#9901)
relates to #9593 

Implements the UI for users to upload, download, and delete macos
profiles


![image](https://user-images.githubusercontent.com/1153709/219685914-6f44e77b-c2cb-47c3-897d-1ba137510fed.png)

- [x] Changes file added for user-visible changes in `changes/` or
`orbit/changes/`.
- [ ] Added/updated tests
- [x] Manual QA for all new/changed functionality
2023-02-21 15:31:19 +00:00

15 lines
405 B
TypeScript

import PATHS from "router/paths";
import { ISideNavItem } from "pages/admin/components/SideNav/SideNav";
import CustomSettings from "./cards/CustomSettings";
const MAC_OS_SETTINGS_NAV_ITEMS: ISideNavItem<any>[] = [
{
title: "Custom settings",
urlSection: "custom-settings",
path: PATHS.CONTROLS_CUSTOM_SETTINGS,
Card: CustomSettings,
},
];
export default MAC_OS_SETTINGS_NAV_ITEMS;