Parameterized Route

Parameterized Route

Parameterized routes use square brackets to capture dynamic segments. The value is available via the params prop.

Captured Parameter

id = "abc123"

File Structure

routes/
  features/
    routing/
      post/
        [id].tsx    ← Dynamic segment

Route Pattern

/features/routing/post/:id