10 lines
275 B
TypeScript
10 lines
275 B
TypeScript
|
|
"use client";
|
||
|
|
import { AddIcon } from "@/components/icons";
|
||
|
|
import ArticleTable from "@/components/table/article-table";
|
||
|
|
import { Button, Card } from "@nextui-org/react";
|
||
|
|
import Link from "next/link";
|
||
|
|
|
||
|
|
export default function StaticPageTable() {
|
||
|
|
return <ArticleTable />;
|
||
|
|
}
|