|
|
|
|
|
by jscholes
1604 days ago
|
|
This page talks a lot about knowledge that is transferable, e.g.: > We want your experience with Remix to transfer to web development generally. But then, you opened the quickstart tutorial[1], and the first bit of mark-up is: <Link to="/posts">Posts</Link>
Uh... okay. Not only is this not how you create links in HTML, but it also repurposes an element that actually does exist in HTML[2] for a completely different purpose. Of course, as to not conflict with that element, I now have to remember to type the L in uppercase, which is another aspect that doesn't carry over to HTML either.It seems the amount they're willing to reinvent is limited to JavaScript. [1] https://remix.run/docs/en/v1/tutorials/blog
[2] https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li... |
|
You can of course use regular <a> links and navigate to a new page every time.