UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

1 lines 945 B
define([], function() { return "import * as React from 'react';\r\nimport {\r\n Nav\r\n} from '../../../../index';\r\n\r\nexport class NavNestedExample extends React.Component<any, any> {\r\n public render() {\r\n return (\r\n <Nav\r\n groups={ [ { links: [\r\n { name: 'Parent link', url: 'http://example.com', links: [\r\n { name: 'Child link', url: 'http://example.com' },\r\n { name: 'Child link', url: 'http://example.com', links: [\r\n { name: 'Child link', url: 'http://example.com' },\r\n { name: 'Child link', url: 'http://example.com' }\r\n ] },\r\n { name: 'Child link', url: 'http://example.com' }\r\n ] },\r\n { name: 'Parent link', url: 'http://example.com', links: [\r\n { name: 'Child link', url: 'http://example.com' },\r\n ] }\r\n ] } ] }\r\n />\r\n );\r\n }\r\n\r\n}\r\n"; });