test task for Binance
Task: https://github.com/orangeflame/binance-fe-test
Pros:
- Extra low size (nearly 3Kb)
- Blazing fast
- Made as npm package
Cons:
- Used store based on context API instead of Redux (for size purpose)
- Lack of readability
Example deployed on gh-pages https://travnikov.dev/binance-cryptocurrency-widget/
npm install --save binance-cryptocurrency-widget
import React, { Component } from 'react'
import BinanceWidget from 'binance-cryptocurrency-widget'
import 'binance-cryptocurrency-widget/dist/index.css'
class Example extends Component {
render() {
return <BinanceWidget />
}
}
MIT © TravnikovRN