import * as React from 'react'; import * as ReactDOM from 'react-dom'; import _ from 'lodash'; import E2EExample from './E2EExample'; import routes from './routes'; import { BrowserRouter, Route, Switch, Link } from 'react-router-dom'; import { Provider, Flex, Header, List, teamsTheme } from '@fluentui/react-northstar'; const ContentList = () => ( <>
({ key: testExampleUrl, header: { as: Link, to: testExampleUrl, content: _.startCase(testExampleUrl) }, }))} /> ); const App = () => ( {/* The disabledAnimation is added in order for avoiding delays when things are shown/hidden by the Animation component */} ); ReactDOM.render(, document.getElementById('root'));