1.0.0 • Published 8 years ago
@cyberhck/react-disqus-comments v1.0.0
react-disqus-comments
This is a fork
Forked from the popular package by mzabriskie, but with a few fixes.
Installing
$ npm install react-disqus-comments
Example
var React = require('react');
var ReactDisqusComments = require('react-disqus-comments');
var App = createClass({
handleNewComment: function(comment) {
console.log(comment.text);
}
render: function () {
return (
<ReactDisqusComments
shortname="example"
identifier="something-unique-12345"
title="Example Thread"
url="http://www.example.com/example-thread"
category_id="123456"
onNewComment={this.handleNewComment}/>
);
}
});
React.render(<App/>, document.getElementById('container'));
License
MIT
1.0.0
8 years ago