↓ ここら辺 ```ts type accountType = { github: string; twitter: string; mailAddress: string; }; type accountTypeOfElement = { github: JSX.Element; twitter: JSX.Element; mailAddress: JSX.Element; }; const accountsIcons: accountTypeOfElement = { twitter: <Twitter fontSize="small" />, github: <GitHub fontSize="small" />, mailAddress: <Mail fontSize="small" />, }; const url: accountType = { twitter: "https://twitter.com/", github: "https://github.com/", mailAddress: "mailto:", }; ```
↓ ここら辺