office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
1 lines • 713 B
JavaScript
define([], function() { return "import * as React from 'react';\nimport {\n Label,\n Pivot,\n PivotItem,\n PivotLinkSize\n} from '../../../../index';\n\nexport class PivotLargeExample extends React.Component<any, any> {\n public render() {\n return (\n <div>\n <Pivot linkSize={ PivotLinkSize.large }>\n <PivotItem linkText='My Files'>\n <Label>Pivot #1</Label>\n </PivotItem>\n <PivotItem linkText='Recent'>\n <Label>Pivot #2</Label>\n </PivotItem>\n <PivotItem linkText='Shared with me'>\n <Label>Pivot #3</Label>\n </PivotItem>\n </Pivot>\n </div>\n );\n }\n\n}\n"; });