import Link from 'next/link'
import DiscordImage from './DiscordImage'
const Owner = ({ id, username, tag, avatarHash }:OwnerProps):JSX.Element => {
return
{username} #{tag}
}
export default Owner
interface OwnerProps {
id: string
tag: string
avatarHash: string
username: string
}