Closed filoozom closed 2 years ago
Currently we're using <a href={ROUTE} />, which hard refreshes the page on click. These should be replaced with <Link to={ROUTE} /> so that we stay in the SPA.
<a href={ROUTE} />
<Link to={ROUTE} />
Currently we're using
<a href={ROUTE} />
, which hard refreshes the page on click. These should be replaced with<Link to={ROUTE} />
so that we stay in the SPA.