Access dynamic route params in components outside of the FileRouter
In this structure:
I need the header to render the following:
where lang is derived from this url http://localhost:3000/en
however params.lang is undefined unless its inside a route
I need the header to render the following:
<A href={/${params.lang}/sign_in} class="navAction">where lang is derived from this url http://localhost:3000/en
however params.lang is undefined unless its inside a route

