import { CogIcon, PlusIcon } from '@heroicons/react/solid' import { useGuildMember } from 'contexts/GuildMember' import { Divider } from 'components/design/Divider' import { Channels } from 'components/Application/Channels' import { IconButton } from 'components/design/IconButton' import { GuildsChannelsPath } from '..' export interface GuildLeftSidebarProps { path: GuildsChannelsPath } export const GuildLeftSidebar: React.FC = (props) => { const { path } = props const { guild } = useGuildMember() return (

{guild.name}

) }