Chapter 2 Discussions
Bronze Challenge: Footer
As I’m working through the challenges, posting my solutions - any comments/suggestions welcome.
src/Footer.js
function Footer(){
return(
<footer className="footer-component">
<h3>Built by:<i>Your Name</i></h3>
</footer>
)
}
export default Footer;
src/App.js
import Footer from './components/Footer';
<Footer />