burdy
Version:
Open Source Headless Platform
16 lines (15 loc) • 349 B
TypeScript
/// <reference types="react" />
export interface IDashboardLink {
key: string;
title: string;
icon: string;
url: string;
permissions?: string[];
}
export interface IDashboardSection {
key: string;
component: JSX.Element;
permissions?: string[];
}
declare const Dashboard: () => JSX.Element;
export default Dashboard;