type CategoryTabsProps = { selectedCategory: string; onCategoryChange: (category: string) => void; }; const categories = [ "SEMUA", "POLRI", "MAHKAMAH AGUNG", "DPR", "MPR", "KEJAKSAAN AGUNG", "KPK", "PUPR", "BSKDN", "BUMN", "KPU", ]; export default function CategoryTabs({ selectedCategory, onCategoryChange, }: CategoryTabsProps) { return (