How can i put the routerlink in reactjs button?
I tried these two below: the first one changes the color while the second one, i don't like it since it is reloading the page.
FIRST
<Link to="/settings">
<IconButton color="inherit">
<SettingsIcon />
</IconButton>
</Link>
SECOND
<IconButton color="inherit" href="/settings">
<SettingsIcon />
</IconButton>