Rewrite frontend using create-react-app

This commit is contained in:
MICHAEL JACKSON
2017-03-25 23:53:54 -07:00
parent 69a578fcda
commit 0f5c584104
60 changed files with 20489 additions and 18930 deletions

12
client/Home.js Normal file
View File

@ -0,0 +1,12 @@
import React from 'react'
import contentHTML from './Home.md'
class Home extends React.Component {
render() {
return (
<div className="wrapper" dangerouslySetInnerHTML={{ __html: contentHTML }}/>
)
}
}
export default Home