react-disqus-comments
TypeScript icon, indicating that this package has built-in type declarations

1.4.0 • Public • Published

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.

Dependencies (0)

    Dev Dependencies (8)

    Package Sidebar

    Install

    npm i react-disqus-comments

    Weekly Downloads

    1,117

    Version

    1.4.0

    License

    MIT

    Unpacked Size

    43 kB

    Total Files

    12

    Last publish

    Collaborators

    • scedast