11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
export interface MenuItem {
|
|
phIcon: Component
|
|
tooltip: string
|
|
clickHandler?: () => void
|
|
to?: string
|
|
}
|
|
|
|
export interface SidebarProps {
|
|
menuItems: MenuItem[]
|
|
}
|