import './App.css';
import Header from './components/header'
function App() {
return (
<div className="App">
<Header />
<script src="https://platform.linkedin.com/badges/js/profile.js" async defer type="text/javascript"></script>
<div class="badge-base LI-profile-badge" data-locale="en_US" data-size="medium" data-theme="dark" data-type="VERTICAL" data-vanity="USERNAME_HERE" data-version="v1"><a class="badge-base__link LI-simple-link" href="https://ca.linkedin.com/in/USERNAME_HERE?trk=profile-badge">USERNAME_HERE</a></div>
</div>
);
}
export default App;
USERNAME_HERE is just a filler to fill with linkedin username. The issue is that my react app just shows the link with my name instead of the full badge. I did not make a badge-base css object or a LI-profile-badge css object. Im assuming I shouldnt or am I mistaken?