const UrlButton = ({ href, children }:UrlButtonProps) => { return ( <a href={href} className="url-button"> {children} </a> ); } export default UrlButton; interface UrlButtonProps{ href: string, children: string, };