9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
import { ElementType } from "react";
|
|
|
|
export interface ISidebarLink {
|
|
title: string;
|
|
path: string;
|
|
icon?: ElementType | string;
|
|
children?: ISidebarLink[];
|
|
}
|