react-openfin-mat-impl
Version:
Materialize UI implementation of react-openfin
12 lines (11 loc) • 349 B
TypeScript
import * as React from 'react';
import { RouteItem } from '../../routes';
interface IProps {
appLogo: string;
routes: RouteItem[];
headerPrefixElements?: React.ReactNode;
headerSuffixElements?: React.ReactNode;
location?: any;
}
declare const ChildWindowLayout: React.FunctionComponent<IProps>;
export default ChildWindowLayout;