react-trading-ui

0.1.5 • Public • Published

React Trading UI

A component library for trading applications.

react-trading-ui

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

Package Sidebar

Install

npm i react-trading-ui

Weekly Downloads

19

Version

0.1.5

License

GPL-3.0

Last publish

Collaborators

  • rongierlach