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