This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
lenn
/
dioxus-mirror
kopia lustrzana
https://github.com/DioxusLabs/dioxus.git
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Wiki
Przeglądaj źródła
wrap the result of render_with_location in an option
Evan Almloff
1 rok temu
rodzic
913ed0cfe3
commit
af75fb855f
1 zmienionych plików
z
3 dodań
i
1 usunięć
Widok podzielony
Pokaż statystyki zmian
3
1
packages/rsx/src/lib.rs
+ 3
- 1
packages/rsx/src/lib.rs
Wyświetl plik
@@ -85,7 +85,9 @@ impl CallBody {
};
quote! {
- #body
+ Some({
+ #body
+ })
}
}
}