22 lines
643 B
TypeScript
22 lines
643 B
TypeScript
import SiteBreadcrumb from "@/components/site-breadcrumb";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Plus } from "lucide-react";
|
|
import EscalationTable from "./components/escalation-table";
|
|
|
|
const FaqPage = async () => {
|
|
return (
|
|
<div>
|
|
<SiteBreadcrumb />
|
|
<div className="w-full overflow-x-auto bg-white p-4 rounded-sm space-y-3">
|
|
<div className="flex justify-between py-3">
|
|
<p className="text-lg">Eskalasi</p>
|
|
</div>
|
|
<EscalationTable />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default FaqPage;
|