mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
rustfmt
This commit is contained in:
parent
da1862507e
commit
053dc6fa3e
1 changed files with 2 additions and 2 deletions
|
@ -13,12 +13,12 @@ fn app(cx: Scope) -> Element {
|
|||
.fixed(
|
||||
"users",
|
||||
Route::empty()
|
||||
.nested(Segment::content(comp(UserList)).catch_all((comp(User), UserId { }))),
|
||||
.nested(Segment::content(comp(UserList)).catch_all((comp(User), UserId {}))),
|
||||
)
|
||||
.fixed(
|
||||
"blog",
|
||||
Route::empty().nested(
|
||||
Segment::content(comp(BlogList)).catch_all((comp(BlogPost), PostId { })),
|
||||
Segment::content(comp(BlogList)).catch_all((comp(BlogPost), PostId {})),
|
||||
),
|
||||
)
|
||||
.fallback(comp(E404))
|
||||
|
|
Loading…
Reference in a new issue