This website works better with JavaScript
Inicio
Explorar
Axuda
Iniciar sesión
lenn
/
dioxus-mirror
réplica de
https://github.com/DioxusLabs/dioxus.git
Seguir
1
Destacar
0
Fork
0
Ficheiros
Incidencias
0
Wiki
Explorar o código
wrap the result of render_with_location in an option
Evan Almloff
hai 1 ano
pai
913ed0cfe3
achega
af75fb855f
Modificáronse 1 ficheiros
con
3 adicións
e
1 borrados
Dividir vista
Mostrar estatísticas de Diff
3
1
packages/rsx/src/lib.rs
+ 3
- 1
packages/rsx/src/lib.rs
Ver ficheiro
@@ -85,7 +85,9 @@ impl CallBody {
};
quote! {
- #body
+ Some({
+ #body
+ })
}
}
}