import { Suspense, lazy } from "react" import { BrowserRouter, Routes, Route } from "react-router-dom" import AppShell from "./components/AppShell" const Dashboard = lazy(() => import("./pages/Dashboard")) const History = lazy(() => import("./pages/History")) const Live = lazy(() => import("./pages/Live")) const Analytics = lazy(() => import("./pages/Analytics")) function App() { return (
Loading inspection workspace...
} > } /> } /> } /> } />
) } export default App