Skip to content
Prev Previous commit
Add docs
  • Loading branch information
Archmonger committed Jan 30, 2024
commit ab782aac615bd269e58a7e49ab6deb6c97edd99a
3 changes: 2 additions & 1 deletion docs/examples/python/django-router.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ def my_component():
route("/router/slug/<slug:value>/", html.div("Example 5")),
route("/router/string/<str:value>/", html.div("Example 6")),
route("/router/uuid/<uuid:value>/", html.div("Example 7")),
route("/router/two_values/<int:value>/<str:value2>/", html.div("Example 9")),
route("/router/two_values/<int:value>/<str:value2>/", html.div("Example 8")),
route("/router/*", html.div("Fallback")),
)