2025-07-03 19:18:51 +02:00

9 lines
156 B
TypeScript

import { ElementType } from "react";
export interface ISidebarLink {
title: string;
path: string;
icon?: ElementType;
children?: ISidebarLink[];
}