hey guys im trying to convert html template into react
and i keep getting an error that react cant find the module
i wrote this Footer function and added to App.js
and im getting problems can somebody plz help? if full code is needed ill write my github: https://github.com/joshkwannacode/htmlToReact
import React from "react";
const Footer = () => {
return (
<footer id="footer">
<div className="container">
<div className="row gtr-200">
<div className="col-12">
<section>
<h2 className="major">
<span>What's this about?</span>
</h2>
<p>
This is <strong>TXT</strong>, yet another free responsive site
template designed by
<a href="http://twitter.com/ajlkn">AJ</a> for{" "}
<a href="http://html5up.net">HTML5 UP</a>. It's released under
the
<a href="http://html5up.net/license/">
Creative Commons Attribution
</a>{" "}
license so feel free to use it for whatever you're working on
(personal or commercial), just be sure to give us credit for the
design. That's basically it :)
</p>
</section>
</div>
<div className="col-12">
<section>
<h2 className="major">
<span>Get in touch</span>
</h2>
<ul className="contact">
<li>
<a className="icon brands fa-facebook-f" href="#">
<span className="label">Facebook</span>
</a>
</li>
<li>
<a className="icon brands fa-twitter" href="#">
<span className="label">Twitter</span>
</a>
</li>
<li>
<a className="icon brands fa-instagram" href="#">
<span className="label">Instagram</span>
</a>
</li>
<li>
<a className="icon brands fa-dribbble" href="#">
<span className="label">Dribbble</span>
</a>
</li>
<li>
<a className="icon brands fa-linkedin-in" href="#">
<span className="label">LinkedIn</span>
</a>
</li>
</ul>
</section>
</div>
</div>
<div id="copyright">
<ul className="menu">
<li>
Design: <a href="http://html5up.net">HTML5 UP</a>
</li>
</ul>
</div>
</div>
</footer>
);
};
export default Footer;