I have a reactjs application with multiple component,
function App() {
return (
<main className="text-white">
<Navbar />
<About />
<Skills />
<Experience />
<Project />
<Contact />
</main>
);
}
How can I use jQuery inside navbar component to scroll to these sections?