This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
lenn
/
dioxus-mirror
miroir de
https://github.com/DioxusLabs/dioxus.git
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Wiki
Parcourir la source
wrap the result of render_with_location in an option
Evan Almloff
il y a 1 an
Parent
913ed0cfe3
commit
af75fb855f
1 fichiers modifiés
avec
3 ajouts
et
1 suppressions
Vue séparée
Afficher les stats Diff
3
1
packages/rsx/src/lib.rs
+ 3
- 1
packages/rsx/src/lib.rs
Voir le fichier
@@ -85,7 +85,9 @@ impl CallBody {
};
quote! {
- #body
+ Some({
+ #body
+ })
}
}
}