22 lines
646 B
TypeScript
22 lines
646 B
TypeScript
"use client";
|
|
import SiteBreadcrumb from "@/components/site-breadcrumb";
|
|
import { useState } from "react";
|
|
import { Button } from "@/components/ui/button";
|
|
import PopUpList from "../popup/component/table";
|
|
import PopUpListTable from "../popup/component/popup-table";
|
|
import IklanList from "./component/table";
|
|
import IklanListTable from "./component/popup-table";
|
|
|
|
export default function AdminIklan() {
|
|
const [selectedTab, setSelectedTab] = useState("content");
|
|
|
|
return (
|
|
<div>
|
|
<SiteBreadcrumb />
|
|
<div className="w-full overflow-x-auto bg-white p-4 rounded-sm space-y-3">
|
|
<IklanList />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|