This website works better with JavaScript
Home
Explore
Help
Sign In
lenn
/
dioxus-mirror
mirror of
https://github.com/DioxusLabs/dioxus.git
Watch
1
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
wrap the result of render_with_location in an option
Evan Almloff
1 year ago
parent
913ed0cfe3
commit
af75fb855f
1 changed files
with
3 additions
and
1 deletions
Unified View
Show Diff Stats
3
1
packages/rsx/src/lib.rs
+ 3
- 1
packages/rsx/src/lib.rs
View File
@@ -85,7 +85,9 @@ impl CallBody {
};
};
quote! {
quote! {
- #body
+ Some({
+ #body
+ })
}
}
}
}
}
}