import * as React from "react"; import * as ReactDOM from "react-dom"; import { components } from "./core"; import { Fabric } from "office-ui-fabric-react"; import { initializeIcons as initializeIconsA } from "./core/icons-subset/subset-a"; import "./index.html"; import "./style.scss"; // generated from https://uifabricicons.azurewebsites.net/ // 1. Download the subset // 2. put the font file in the dist/application/fonts/ // 3. put the contents of src dir in './core/icons-subset/' initializeIconsA("./fonts/"); ReactDOM.render(

version 3.2.0

, document.getElementById("root") );