consistent naming & strucutre

This commit is contained in:
Johannes Kirschbauer
2023-08-26 15:46:10 +02:00
parent dec5e1e5db
commit 87cce983e9
21 changed files with 438 additions and 444 deletions

View File

@@ -0,0 +1,16 @@
"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} />
</StrictMode>
);
}