Init with create-react-app

This commit is contained in:
2018-04-11 11:24:07 +05:30
commit 911082b42d
15 changed files with 10343 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
/* eslint-disable react/jsx-filename-extension */
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import { PortfolioBuilderApp } from './Components/PortfolioBuilderApp';
import registerServiceWorker from './registerServiceWorker';
ReactDOM.render(<PortfolioBuilderApp />, document.getElementById('root'));
registerServiceWorker();