Fix QC Kak Inno & Kak Ayu Tanggal 15 Oct

This commit is contained in:
2025-10-17 10:03:03 +08:00
parent 0b574406e2
commit 75bf0652b1
25 changed files with 1420 additions and 356 deletions

View File

@@ -1,6 +1,9 @@
export type MenuItem = {
id: string,
name: string,
href: string,
children?: MenuItem[]
}
id: string;
name: string;
href?: string;
children?: MenuItem[];
} & (
{ href: string; children?: MenuItem[] } |
{ children: MenuItem[] }
)