From eb6db6ec3370fbf7b75f4d09832745a2bc6113c9 Mon Sep 17 00:00:00 2001 From: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Date: Fri, 3 Feb 2023 12:45:52 -0500 Subject: [PATCH] Fleet UI: Controls > macOS settings Add better empty state (demo purposes) (#9654) --- frontend/router/index.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/router/index.tsx b/frontend/router/index.tsx index 6a58d7e3be..7ee1206d43 100644 --- a/frontend/router/index.tsx +++ b/frontend/router/index.tsx @@ -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 (
-

MacSettings!

+
); };