1.0.0 • Published 7 years ago

@cyberhck/react-disqus-comments v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

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