import { h, Component } from 'preact'; export default class View extends Component { render() { const channels = this.props.channels.map((channel) => { return

{channel.channel_name}

{channel.description}
}); return

Channel Invitations 🤗

{channels}
} }