This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
lenn
/
dioxus-mirror
espejo de
https://github.com/DioxusLabs/dioxus.git
Seguir
1
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Explorar el Código
wrap the result of render_with_location in an option
Evan Almloff
hace 1 año
padre
913ed0cfe3
commit
af75fb855f
Se han
modificado 1 ficheros
con
3 adiciones
y
1 borrados
Dividir vista
Mostrar estadísticas de diff
3
1
packages/rsx/src/lib.rs
+ 3
- 1
packages/rsx/src/lib.rs
Ver fichero
@@ -85,7 +85,9 @@ impl CallBody {
};
quote! {
- #body
+ Some({
+ #body
+ })
}
}
}