How to use the @uifabric/example-app-base/lib/components/Page/Page.module.scss.uListFlex function in @uifabric/example-app-base

To help you get started, we’ve selected a few @uifabric/example-app-base examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github OfficeDev / office-ui-fabric-react / apps / fabric-website / src / pages / Overviews / ControlsPage / ControlsPage.tsx View on Github external
category =>
          category.pages && {
            sectionName: category.title,
            content: (
              <ul>
                {category.pages.map(page =&gt; (
                  <li>
                    {page.title}
                  </li>
                ))}
              </ul>
            )
          }
      );