mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
15 lines
246 B
TypeScript
15 lines
246 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
interface IRoute {
|
||
|
path: string;
|
||
|
icon?: string;
|
||
|
title?: string;
|
||
|
component: React.ComponentType;
|
||
|
type: string;
|
||
|
hidden?: boolean;
|
||
|
flag?: string;
|
||
|
parent?: string;
|
||
|
}
|
||
|
|
||
|
export default IRoute;
|