UI: Added /nodes page

This commit is contained in:
Luis-Hebendanz
2023-08-09 17:31:28 +02:00
parent f20ff2abea
commit b9c6ffd95c
4 changed files with 489 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
"use client"
import { StrictMode } from "react";
import NodeList from "./NodeList";
import Box from "@mui/material/Box";
export default function Page() {
return (
<Box>
<NodeList />
</Box>
);
}