This repository was archived by the owner on Feb 6, 2021. It is now read-only.

Description
↓ ここら辺
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:",
};