Page is refreshing every time a new route is clicked - React SPA

Just found the solution… I’m so sorry!!! I have used links with href instead od the Link component provided by React Router.

So make sure you have the

<Link to='/your-route'></Link>

from

import { Link } from 'react-router-dom'

and all is good.

1 Like