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