Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

theplatapi/react-disqus-thread

 
 

Repository files navigation

react-disqus-comments

Installing

$ npm install react-disqus-comments

Example

import React from 'react';
import ReactDisqusComments from 'react-disqus-comments';

class App extends React.Component {
  handleNewComment(comment) {
    console.log(comment.text);
  }

  render() {
    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

Thanks

Thanks to mzabriskie for the original package. This package fixes annoying warnings.

About

React Disqus Comments

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%