Updated to main branch

This commit is contained in:
Luis Hebendanz 2023-10-27 19:26:51 +02:00
parent ce66ab036f
commit 410b7c1158

View File

@ -1,12 +1,10 @@
"use client";
import { NodeTable } from "@/components/table";
import { StrictMode } from "react";
export default function Page() {
return (
<StrictMode>
<NodeTable />
</StrictMode>
<NodeTable />
);
}