This website works better with JavaScript
Página inicial
Explorar
Ajuda
Entrar
lenn
/
dioxus-mirror
mirror de
https://github.com/DioxusLabs/dioxus.git
Observar
1
Favorito
0
Fork
0
Arquivos
Issues
0
Wiki
Ver código fonte
wrap the result of render_with_location in an option
Evan Almloff
1 ano atrás
pai
913ed0cfe3
commit
af75fb855f
1 arquivos alterados
com
3 adições
e
1 exclusões
Visão dividida
Mostrar estatísticas do Diff
3
1
packages/rsx/src/lib.rs
+ 3
- 1
packages/rsx/src/lib.rs
Ver arquivo
@@ -85,7 +85,9 @@ impl CallBody {
};
quote! {
- #body
+ Some({
+ #body
+ })
}
}
}