Skip to content
Snippets Groups Projects
Forked from 2024 Competition / Bielefeld-CeBiTec
2380 commits behind the upstream repository.
UrlButton.tsx 241 B

 const UrlButton = ({ href, children }:UrlButtonProps) => {

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