I would like to know how can I scroll to a component instead of just instant view the component
So I have the following from my Overview component
<a className="more-text group" href="#about">
<h3 className="title">+ </h3>
<h3 className="title">learn more</h3>
</a>
And the comnponent stays in my Home component
class Home extends React.Component {
render() {
return (
<div>
{/* Header */}
<Header />
{/*Overview Component*/}
<Overview />
{/* About Component*/}
<About />
{/*Footer Component*/}
<Footer />
</div>
);
}
}