Initial react commit

This commit is contained in:
2018-02-23 20:31:42 +11:00
parent 948f447d9f
commit 878bab91ac
8 changed files with 166 additions and 0 deletions

13
public/index.jsx Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
import 'babel-polyfill';
import React from 'react';
import ReactDOM, { render } from 'react-dom';
import App from './App.jsx';
import Styles from './styles/index.scss';
render((
<App />
), document.getElementById("app"));