Popup list of discussion channels.
import ChannelList from 'patchkit-channel-list'
const channels = [
{ name: 'apples' },
{ name: 'bananas' },
{ name: 'carrots' }
]
const onSelect = c => console.log('selected', c)
<ChannelList channels={channels} onSelect={onSelect} />
Use the .less file:
@import "node_modules/patchkit-channel-list/styles.less"