Created
May 13, 2017 13:09
-
-
Save Kamilnaja/2e5d614d7504dafad39426be7ef0f04a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import ReactDOM from 'react' | |
import { render } from 'react-dom'; | |
class CommentBox extends React.Component { | |
render () { | |
return ( | |
<div className = "commentBox"> | |
hello world | |
</div> | |
); | |
} | |
} | |
render( | |
<CommentBox/>, | |
document.getElementById('content') | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment