import { shell } from 'electron' import React from 'react' import PropTypes from 'prop-types' import { btc } from 'utils' import styles from './ChannelsList.scss' const ChannelsList = ({ channels, updateSelectedChannels, selectedChannelIds }) => ( ) ChannelsList.propTypes = { channels: PropTypes.array.isRequired, updateSelectedChannels: PropTypes.func.isRequired, selectedChannelIds: PropTypes.array.isRequired } export default ChannelsList