import React from "react"; | |
import "./FooterStyles.css"; | |
function FooterTitle({ children, ...restProps }) { | |
return ( | |
<a href="#" className="footer-title" {...restProps}> | |
{children} | |
</a> | |
); | |
} | |
export default FooterTitle; | |
import React from "react"; | |
import "./FooterStyles.css"; | |
function FooterTitle({ children, ...restProps }) { | |
return ( | |
<a href="#" className="footer-title" {...restProps}> | |
{children} | |
</a> | |
); | |
} | |
export default FooterTitle; | |