mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
11 lines
383 B
TypeScript
11 lines
383 B
TypeScript
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'));
|