import React, { PureComponent } from 'react' import posed, { PoseGroup } from 'react-pose' import { AppContext } from '../store/createContext' import { cryptoFormatter } from '../../utils' import './Ticker.css' import { fadeIn } from './Animations' const Item = posed.div(fadeIn) export default class Ticker extends PureComponent { static contextType = AppContext items = activeStyle => Object.keys(this.context.prices).map((key, i) => ( )) render() { const { accentColor } = this.context const activeStyle = { backgroundColor: accentColor, color: '#fff', borderColor: accentColor } return ( ) } }