12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
export interface MenuItem {
|
|
phIcon: Component
|
|
tooltip: string
|
|
clickHandler?: () => void
|
|
to?: string
|
|
}
|
|
|
|
export interface SidebarProps {
|
|
menuItems: MenuItem[],
|
|
isHome?: boolean
|
|
}
|