I'm trying something like this:
import Button from '@material-ui/core/Button';
import { Link } from "react-router-dom";
return (
<div className="App">
<header className="App-header">
<Button
variant="contained"
color="secondary"
// THIS HERE:
onClick={<Link to="./Form"/>}
>
CLICK
</Button>
I need: <Button />
, with an onClick, to link me to './Form'. I am trying something like <Button onClick={e => <Link to=".Form"/>}
and have tried every variation I can think of to make this work. Please someone help, and thanks.
CodePudding user response:
I think you need to use the component
attribute :
<Button component={Link} to="./Form"
variant="contained"
color="secondary"
>
CLICK
</Button>
CodePudding user response:
You can do it this way
const history = useHistory();
const navigateTo = () => history.push('/componentURL');//eg.history.push('/login');
return (
<div>
<button onClick={navigateTo} type="button" />
</div>
);