28 lines
799 B
TypeScript
28 lines
799 B
TypeScript
import SiteBreadcrumb from "@/components/site-breadcrumb";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import FaqTable from "./components/table";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Plus } from "lucide-react";
|
|
import { StatisticsBlock } from "@/components/blocks/statistics-block";
|
|
import ReportTable from "./components/table";
|
|
|
|
const FaqPage = async () => {
|
|
return (
|
|
<div>
|
|
<SiteBreadcrumb />
|
|
<div className="space-y-4">
|
|
<div className="flex items-center">
|
|
<div className="flex-1 text-xl font-medium text-default-900">
|
|
Pelaporan Akun
|
|
</div>
|
|
<div className="flex-none"></div>
|
|
</div>
|
|
|
|
<ReportTable />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default FaqPage;
|