UNPKG

react-openfin-mat-impl

Version:
16 lines (15 loc) 497 B
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;