kx3dex_radio/components/types.tsx

7 lines
142 B
TypeScript
Raw Normal View History

2024-04-11 02:40:31 +00:00
export type NavItem = {
title: string;
path: string;
icon?: JSX.Element;
submenu?: boolean;
subMenuItems?: NavItem[];
};