import { memo } from 'react' import Image from 'next/image' import { GuildWithDefaultChannelId } from '../../../models/Guild' import { IconLink } from '../../design/IconLink' export interface GuildProps { guild: GuildWithDefaultChannelId selected?: boolean } const GuildMemo: React.FC = (props) => { const { guild, selected } = props return (
logo
) } export const Guild = memo(GuildMemo)