Can components be forced to re-mount when the URL changes?
In the Basic example, the blog post component stays mounted but gets new props on navigation. This is undesirable in some cases to prevent race conditions.
Usually you can do something like
<BlogPost data={data} key={id} />
to force a new instance when id changes. Is there an equivalent in tanstack router?