import Link from 'next/link' import DiscordAvatar from './DiscordAvatar' const Application = ({ type, id, name }: ApplicationProps): JSX.Element => { return (

{name}

) } interface ApplicationProps { type: 'bot' id: string name: string } export default Application