Add dev runtime from web-starter

This commit is contained in:
Michael Jackson
2016-05-16 15:55:24 -07:00
parent 5f2615f2ed
commit 66ef9a780c
10 changed files with 382 additions and 106 deletions

8
modules/client/home.js Normal file
View File

@ -0,0 +1,8 @@
import React from 'react'
import { render } from 'react-dom'
import Home from './components/Home'
render(
<Home/>,
document.getElementById('app')
)