Skip to content

Latest commit

 

History

History
52 lines (29 loc) · 860 Bytes

README.md

File metadata and controls

52 lines (29 loc) · 860 Bytes

React Native Disqus

React Native Disqus let you simple implement Disqus chat in your APP.

Contribute

Buy me a coffee =)

Platforms Supported

  • iOS
  • Android

Getting Started

Install with Yarn

yarn add react-native-disqus react-native-webview

or

Install with Npm

npm install react-native-disqus react-native-webview --save

If React Native < 0.60

react-native link react-native-webview

Usage

Import the ReactNativeDisqus component from react-native-disqus and use it like so:

import React, { Component } from 'react';
import ReactNativeDisqus from 'react-native-disqus';

// ...
class MyWebComponent extends Component {
  render() {
    return (
      <ReactNativeDisqus shortname="INSERT_YOUR_DISQUS_SHORTNAME" id="UNIQUE_TOPIC_ID" />
    );
  }
}