exercise 2.3 with themes and styles

This commit is contained in:
Ken
2019-02-18 20:42:37 -08:00
parent baf9dfd5ca
commit c5cb0abff8
17 changed files with 388 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom';
import { TodoApp } from './components/TodoApp';
import { initializeIcons } from '@uifabric/icons';
// Initializes the UI Fabric icons that we can use
// Choose one from this list: https://developer.microsoft.com/en-us/fabric#/styles/icons
initializeIcons();
ReactDOM.render(<TodoApp />, document.getElementById('app'));