UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

63 lines 2.76 kB
import * as React from 'react'; import { Nav } from 'office-ui-fabric-react/lib/Nav'; export var NavNestedExample = function () { return (React.createElement(Nav, { ariaLabel: "Nav example with nested links", groups: [ { links: [ { name: 'Parent link 1', url: 'http://example.com', target: '_blank', expandAriaLabel: 'Expand Parent link 1', collapseAriaLabel: 'Collapse Parent link 1', links: [ { name: 'Child link 1', url: 'http://example.com', target: '_blank' }, { name: 'Child link 2', url: 'http://example.com', target: '_blank', expandAriaLabel: 'Expand Child link 2', collapseAriaLabel: 'Collapse Child link 2', links: [ { name: '3rd level link 1', url: 'http://example.com', target: '_blank' }, { name: '3rd level link 2', url: 'http://example.com', target: '_blank' } ] }, { name: 'Child link 3', url: 'http://example.com', target: '_blank' } ] }, { name: 'Parent link 2', url: 'http://example.com', target: '_blank', expandAriaLabel: 'Expand Parent link 2', collapseAriaLabel: 'Collapse Parent link 2', links: [ { name: 'Child link 4', url: 'http://example.com', target: '_blank' } ] } ] } ] })); }; //# sourceMappingURL=Nav.Nested.Example.js.map