I have a <p>
tag in my react app which I would like to render a React Router V4 Link within. Currently, instead of returning the Link it returns [object Object]
.
Here is my code:
<p className="pt2 pb4">
{`We are constatly encouraging people to get involved, as clichue as it sounds, Rendah is about community, so wether youre an artist, a designer, a writer, a developer or anything else and want to get involed? ${<Link to={'/Contact'} className="no-underline link">Please get in touch!</Link>}`}
</p>
I have searched a few questions but non of them seem to replicate or solve the problem I have here. Am I missing something?
Any help / advice is appreciated - thank you in advance.