Direct link with React

Hey all, I have a question upon how can I create the link which will take me directly to the new page. Now I am creating the link button for Register page but when I run on Ionic App, the link doesn’t take me to the Register Page.

Here is the pieces of the code I used to create the Link with Register page. Is there another way as well to create the link?

Sign up to Open new account

Have you tried changing

<Link to="./Register" ... >Sign up</Link>

to

<Link to="/Register" ... >Sign up</Link>