Fleet UI: Controls > macOS settings Add better empty state (demo purposes) (#9654)

This commit is contained in:
RachelElysia 2023-02-03 12:45:52 -05:00 committed by GitHub
parent 18592d17ad
commit eb6db6ec33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,6 +53,7 @@ import PATHS from "router/paths";
import AppProvider from "context/app";
import RoutingProvider from "context/routing";
import EmptyTable from "components/EmptyTable";
import AuthGlobalAdminRoutes from "./components/AuthGlobalAdminRoutes";
import AuthAnyAdminRoutes from "./components/AuthAnyAdminRoutes";
import AuthenticatedRoutes from "./components/AuthenticatedRoutes";
@ -81,7 +82,10 @@ const AppWrapper = ({ children, location }: IAppWrapperProps) => (
const MacSettingsPage = () => {
return (
<div>
<h1>MacSettings!</h1>
<EmptyTable
header="Coming soon"
info="The ability to store disk encryption keys and customize macOS settings are currently in development."
/>
</div>
);
};