Bunch of website stuff

This commit is contained in:
Michael Jackson
2016-05-20 11:58:58 -07:00
parent 7e29e21483
commit 87524d4947
25 changed files with 784 additions and 162 deletions

View File

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