UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

1 lines 1.17 kB
define([], function() { return "import * as React from 'react';\nimport {\n Label,\n Pivot,\n PivotItem,\n PivotLinkFormat,\n PivotLinkSize\n} from '../../../../index';\n\nimport { CalloutBasicExample } from '../../CalloutPage/examples/Callout.Basic.Example';\nimport { SpinnerBasicExample } from '../../SpinnerPage/examples/Spinner.Basic.Example';\nimport { PersonaBasicExample } from '../../PersonaPage/examples/Persona.Basic.Example';\n\nexport class PivotFabricExample extends React.Component<any, any> {\n public render() {\n return (\n <div>\n <Pivot linkFormat={ PivotLinkFormat.links} linkSize={ PivotLinkSize.normal }>\n <PivotItem linkText='Callout'>\n <Label>Callout Example</Label>\n <CalloutBasicExample/>\n </PivotItem>\n <PivotItem linkText='Spinner'>\n <Label>Spinner Example</Label>\n <SpinnerBasicExample/>\n </PivotItem>\n <PivotItem linkText='Persona'>\n <Label>Persona Example</Label>\n <PersonaBasicExample/>\n </PivotItem>\n </Pivot>\n </div>\n );\n }\n\n}\n"; });