"use strict"; import React from "react"; interface ILinkProps { href?: string; } const Link: React.FC = ({ href, children }) => { return ( {children} ); }; Link.displayName = "Alert Link"; export default Link;