I'm trying to use FontAwesome with React.js but it is not working.
In Button.js
I have:
import React from "react";
import FontAwesome from "react-fontawesome";
const Button = () => {
return <FontAwesome name="rocket" />;
};
export default Button;
and in index.html
I included the FontAwesome CDN: https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css
Any suggestions?