0.1.5 • Published 7 years ago

react-trading-ui v0.1.5

Weekly downloads
11
License
GPL-3.0
Repository
github
Last release
7 years ago

React Trading UI

A component library for trading applications.

Documentation

Demo & Examples

Live demo: coming soon...

To run the example locally, clone this repo and run:

$ npm install
$ npm run start

Then visit localhost:3000 in your browser.

Installation

Using npm:
$ npm install --save react-trading-ui

Using yarn
$ yarn add react-trading-ui

Usage

import {OrderBook, TradeHistory} from 'react-trading-ui'
import {connect} from 'react-redux'

const MyApp = ({book, trades}) => (
  <div className='my-app'>
    <OrderBook asks={book.asks} bids={book.bids} />
    <TradeHistory trades={trades} />
  </div>
)

export default connect(
  state => ({
    book: state.book,
    trades: state.trades
  })
)(MyApp)

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -m 'add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request!

Acknowledgements