initial commit

This commit is contained in:
Alex Holliday
2026-01-28 21:39:38 +00:00
parent c18159afd3
commit eefdb8d253
3 changed files with 13 additions and 2 deletions
@@ -0,0 +1,5 @@
const InfrastructureDetails = () => {
return null;
};
export default InfrastructureDetails;
+8 -2
View File
@@ -27,7 +27,7 @@ import PageSpeedCreate from "../Pages/PageSpeed/Create/index.jsx";
// Infrastructure
import Infrastructure from "../Pages/Infrastructure/Monitors";
import InfrastructureCreate from "../Pages/Infrastructure/Create/index.jsx";
import InfrastructureDetails from "../Pages/Infrastructure/Details/index.jsx";
import InfrastructureDetails from "../Pages/Infrastructure/Details/index";
// Server Status
import ServerUnreachable from "../Pages/ServerUnreachable.jsx";
@@ -165,7 +165,13 @@ const Routes = () => {
/>
<Route
path="infrastructure/:monitorId"
element={<InfrastructureDetails />}
element={
<>
<ThemeProvider theme={v2theme}>
<InfrastructureDetails />
</ThemeProvider>
</>
}
/>
<Route
path="checks/:monitorId?"