Skip to content

Instantly share code, notes, and snippets.

@sergeysova
Created October 7, 2022 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergeysova/ab0e98e76428f62c2cdcb7d3f576d35b to your computer and use it in GitHub Desktop.
Save sergeysova/ab0e98e76428f62c2cdcb7d3f576d35b to your computer and use it in GitHub Desktop.
atomic router cases

Cases for router

Exact word vs parametrised

Routes

/posts
/posts/new
/posts/:postId

Matches

User on page Matched route
/posts/123 /posts/:postId
/posts/new /posts/new
/posts /posts
/posts/demo /posts/:postId
/posts/new123 NotFound
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment