consistent naming & strucutre
This commit is contained in:
16
pkgs/ui/src/app/machines/page.tsx
Normal file
16
pkgs/ui/src/app/machines/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user