30 lines
834 B
TypeScript
30 lines
834 B
TypeScript
import SiteBreadcrumb from "@/components/site-breadcrumb";
|
|
import { Card, CardContent } from "@/components/ui/card";
|
|
import { Button } from "@/components/ui/button";
|
|
import { UploadIcon } from "lucide-react";
|
|
import TicketingTable from "./table/ticketing-table";
|
|
|
|
const TicketingPage = async () => {
|
|
return (
|
|
<div>
|
|
<SiteBreadcrumb />
|
|
<div className="space-y-4">
|
|
<Card className="py-4 px-3">
|
|
<div className="flex flex-row justify-between items-center">
|
|
<div className="flex-1 text-xl font-medium text-default-900">
|
|
Ticketing Table
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
<Card>
|
|
<CardContent className="p-0">
|
|
<TicketingTable />
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default TicketingPage;
|