2024-12-07 19:53:34 +00:00
|
|
|
import SiteBreadcrumb from "@/components/site-breadcrumb";
|
2024-12-10 18:04:03 +00:00
|
|
|
import TicketingTable from "./components/table";
|
2024-12-07 19:53:34 +00:00
|
|
|
|
|
|
|
|
const TicketingPage = async () => {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<SiteBreadcrumb />
|
2025-01-13 09:50:23 +00:00
|
|
|
|
|
|
|
|
<section
|
|
|
|
|
id="table"
|
2025-09-08 17:26:30 +00:00
|
|
|
className="flex flex-col gap-2 bg-white dark:bg-black rounded-lg p-3 mt-5"
|
2025-01-13 09:50:23 +00:00
|
|
|
>
|
2025-09-08 17:26:30 +00:00
|
|
|
{/* <div className="flex justify-between py-3">
|
|
|
|
|
<p className="text-lg">Semua Ticket : 0</p>
|
|
|
|
|
</div> */}
|
2025-01-13 09:50:23 +00:00
|
|
|
|
|
|
|
|
<TicketingTable />
|
|
|
|
|
</section>
|
2024-12-07 19:53:34 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default TicketingPage;
|