Setup of yarn and package.json. Also added first page which queries api for info

This commit is contained in:
2017-06-02 12:04:43 +02:00
parent 76b8c46197
commit f548dba7e1
8 changed files with 1262 additions and 9 deletions

15
client/app/index.js Normal file
View File

@@ -0,0 +1,15 @@
/*
* @Author: KevinMidboe
* @Date: 2017-06-01 21:08:55
* @Last Modified by: KevinMidboe
* @Last Modified time: 2017-06-01 21:34:32
./client/index.js
which is the webpack entry file
*/
import React from 'react';
import ReactDOM from 'react-dom';
import App from './components/App.jsx';
ReactDOM.render(<App />, document.getElementById('root'));