generated from Luis/nextjs-python-web-template
13 lines
206 B
TypeScript
13 lines
206 B
TypeScript
"use client";
|
|
|
|
import { StrictMode } from "react";
|
|
import { NodeTable } from "@/components/table";
|
|
|
|
export default function Page() {
|
|
return (
|
|
<StrictMode>
|
|
<NodeTable />
|
|
</StrictMode>
|
|
);
|
|
}
|