import Link from 'next/link' import classNames from 'classnames' import { GuildsChannelsPath } from '../Application' export interface ChannelsProps { path: GuildsChannelsPath } export const Channels: React.FC = (props) => { const { path } = props return ( ) }