diff --git a/components/Owner.tsx b/components/Owner.tsx new file mode 100644 index 0000000..9ac242d --- /dev/null +++ b/components/Owner.tsx @@ -0,0 +1,22 @@ +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 +} \ No newline at end of file