initial checkin

This commit is contained in:
Ceolter
2016-01-22 06:58:44 +00:00
parent 8b203ef83f
commit 8724cf5c65
3 changed files with 0 additions and 0 deletions

13
src/index.js Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
import ReactDOM from 'react-dom';
import React from 'react';
import {MyApp} from './myApp.jsx';
document.addEventListener('DOMContentLoaded', ()=> {
var container = document.getElementById('myAppContainer');
ReactDOM.render(
React.createElement(MyApp),
container
);
});