import React, { Component } from 'react' import PropTypes from 'prop-types' import { FaAlignJustify, FaThLarge } from 'react-icons/lib/fa' import { MdSearch } from 'react-icons/lib/md' import Channel from 'components/Channels/Channel' import styles from './Channels.scss' class Channels extends Component { componentWillMount() { this.props.fetchChannels() } render() { const { channels: { channels }, allChannels, ticker, currentTicker } = this.props console.log('channels: ', channels) return (