Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created May 13, 2017 13:09
Show Gist options
  • Save Kamilnaja/2e5d614d7504dafad39426be7ef0f04a to your computer and use it in GitHub Desktop.
Save Kamilnaja/2e5d614d7504dafad39426be7ef0f04a to your computer and use it in GitHub Desktop.
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