|
"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 />;
|
|
}
|