1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/interfaces/route.ts
2021-08-23 12:16:38 +02:00

16 lines
266 B
TypeScript

import React from 'react';
interface IRoute {
path: string;
icon?: string;
title?: string;
component: React.ComponentType;
type: string;
layout: string;
hidden?: boolean;
flag?: string;
parent?: string;
}
export default IRoute;