-
I have an app that allows users to create challenges, like meditating every day for 30 days. My url structure looks like this
After watching lots of videos and reading, my understanding is this folder structure should work
However, none of this is working for me. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This files:
Worked on the v1 of Remix, but since v2 the file convention for routes changed to be flat, you can achieve the same with:
Noe that this is supposing everything is nested, since mention the first challenges.tsx as the layout I imagine everything is instead inside that one, but if let's say You can read everything about the convention here https://remix.run/docs/en/main/file-conventions/routes. |
Beta Was this translation helpful? Give feedback.
This files:
Worked on the v1 of Remix, but since v2 the file convention for routes changed to be flat, you can achieve the same with:
Noe that this is supposing everything is nested, since mention the first cha…