office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
26 lines (25 loc) • 742 B
TypeScript
import * as React from 'react';
import './ComponentPage.scss';
export interface IComponentPageProps {
title: string;
componentName: string;
exampleCards: Array<JSX.Element>;
propertiesTables?: Array<JSX.Element>;
bestPractices?: JSX.Element;
dos?: JSX.Element;
donts?: JSX.Element;
overview: JSX.Element;
route: string;
isHeaderVisible?: boolean;
}
export declare class ComponentPage extends React.Component<IComponentPageProps, {}> {
static defaultProps: {
isHeaderVisible: boolean;
};
constructor(props: IComponentPageProps);
render(): JSX.Element;
private _pageHeader();
private _navigationLinks();
private _getPropertiesTable();
private _getDosAndDonts();
}