My SpeedDialAction looks like this:
<SpeedDialAction key="Add" icon={<AddIcon />} tooltipTitle="Add" />
I want to navigate to /add when the action is clicked. Is there a way to do this without using onClick and using the push /add to the history manually?
For example a button allows something like this:
<Button
component={Link}
to={`ticket/${ticket.id}`}
variant="contained"
color="primary"
>
Details
</Button>