Skip to content

isrmicha/react-native-disqus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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" />
    );
  }
}