react-openfin-mat-impl
Version:
Materialize UI implementation of react-openfin
16 lines (15 loc) • 497 B
TypeScript
import * as React from 'react';
import { ISideBarMenuItem } from '../../GlobalTypes';
import { RouteItem } from '../../routes';
interface IProps {
appLogo: string;
routes: RouteItem[];
sidebarBgUrl?: string;
menuItems?: ISideBarMenuItem[];
hideSwitchToLaunchbar?: boolean;
headerPrefixElements?: React.ReactNode;
headerSuffixElements?: React.ReactNode;
location?: any;
}
declare const DashbardLayout: React.FunctionComponent<IProps>;
export default DashbardLayout;