1.0.5 • Published 5 years ago

react-chat-fwork v1.0.5

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

React Chat Fwork

Installation

$ npm install react-chat-fwork

Example

import React, {Component} from 'react'
import {Chat} from 'chat-fwork'

class Fwork extends Component {

  constructor() {
    super();
  }

  render() {
    return (<div>
      <Chat/>
    </div>)
  }
}