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 styles from './Channels.scss' class Channels extends Component { componentWillMount() { this.props.fetchChannels() } render() { const { channels } = this.props return (
console.log('event: ', event)} className={`${styles.text} ${styles.input}`} placeholder='Search channels by funding transaction, channel id, remote public key, etc' type='text' id='channelSearch' />
Create new channel
channels
) } } Channels.propTypes = { } export default Channels