import { h, Component } from 'preact'; export default class View extends Component { channel = (props) => { return (

{props.channel.channel_name}

{props.channel.description}
); }; render() { const channels = this.props.channels.map(channel => { return }); return (

Channel Invitations 🤗

{channels}
); } }