I have a typography that when I hover I would like the cursor to appear like a button, and how would I be able to add my browser router routing to this click?
<Grid item lg={12} md={12} sm={12} xs={12} >
<Typography noWrap className={classes.labelForgot} variant="subtitle2">
Forgot password
</Typography>
</Grid>
my route app:
<BrowserRouter>
<div>
<Header/>
<Navigation/>
<Container maxWidth="lg" >
<Switch>
<Route path="/" component={LandingPage} exact={true} />
<Route path="/xd" component={AuthPage} exact={true} />
<Route component={NotFoundPage} />
</Switch>
</Container>
</div>
</BrowserRouter>