payment-backoffice/app/features/dashboard/sidebar/SidebarLink.interfaces.ts
Mitchell Magro 60af9a6e28 Added rules
2025-07-04 14:14:00 +02:00

9 lines
156 B
TypeScript

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