I would like to write a text in my title but have the word be a clickable link like a 'Link' or 'a'. Title is only waiting for a string.
<MaterialSwitch
title={A CLICKABLE STRING}
/>
The only solution i see is making your custom Tooltip, or just implement one from a library. Then you can add an onClick that directs you to a new Page.
Maybe you wanna take a look at MaterialUI https://mui.com/components/tooltips/
<Tooltip onClick={() => redirect(...)} title="Add">
<Button>Controlled</Button>
</Tooltip>
here is what it could look like in MaterialUI