7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
|
export type NavItem = {
|
||
|
title: string;
|
||
|
path: string;
|
||
|
icon?: JSX.Element;
|
||
|
submenu?: boolean;
|
||
|
subMenuItems?: NavItem[];
|
||
|
};
|