6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
export type MenuItem = {
|
|
id: string,
|
|
name: string,
|
|
href: string,
|
|
children?: MenuItem[]
|
|
} |