This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
lenn
/
dioxus-mirror
mirror da
https://github.com/DioxusLabs/dioxus.git
Segui
1
Vota
0
Forka
0
File
Problemi
0
Wiki
Sfoglia il codice sorgente
wrap the result of render_with_location in an option
Evan Almloff
1 anno fa
parent
913ed0cfe3
commit
af75fb855f
1 ha cambiato i file
con
3 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
3
1
packages/rsx/src/lib.rs
+ 3
- 1
packages/rsx/src/lib.rs
Vedi File
@@ -85,7 +85,9 @@ impl CallBody {
};
quote! {
- #body
+ Some({
+ #body
+ })
}
}
}