Init with create-react-app-typescript

This commit is contained in:
2018-04-06 22:02:18 +05:30
commit a76906b741
17 changed files with 10131 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import App from './App';
import registerServiceWorker from './registerServiceWorker';
import './index.css';
ReactDOM.render(
<App />,
document.getElementById('root') as HTMLElement
);
registerServiceWorker();