Update method definition

This commit is contained in:
MICHAEL JACKSON 2017-03-26 00:17:43 -07:00
parent ebf41f3868
commit 25e4a77fb2
1 changed files with 5 additions and 2 deletions

View File

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