import classNames from 'classnames' import Link from 'next/link' import { GuildsChannelsPath } from '../../Application' import { Channel as ChannelType } from '../../../../models/Channel' export interface ChannelProps { path: GuildsChannelsPath channel: ChannelType selected?: boolean } export const Channel: React.FC = (props) => { const { channel, path, selected = false } = props return ( # {channel.name} ) }