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 } export const Channel: React.FC = (props) => { const { channel, path } = props return ( # {channel.name} ) }