Qubasa-Qubasa-main (#262)

UI: Connected UI to API
This commit is contained in:
Qubasa
2023-09-11 12:59:24 +00:00
parent bf4db16209
commit aa5976f046
6 changed files with 93 additions and 125 deletions

View File

@@ -1,16 +1,12 @@
"use client";
import { tableData } from "@/data/nodeDataStatic";
import { StrictMode } from "react";
import { NodeTable } from "@/components/table";
import { useMachines } from "@/components/hooks/useMachines";
export default function Page() {
//const { data, isLoading } = useMachines();
//console.log({ data, isLoading });
return (
<StrictMode>
<NodeTable tableData={tableData} />
<NodeTable />
</StrictMode>
);
}