This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
lenn
/
dioxus-mirror
mirror de
https://github.com/DioxusLabs/dioxus.git
Vigiar
1
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Wiki
Ver Fonte
wrap the result of render_with_location in an option
Evan Almloff
há 1 ano atrás
pai
913ed0cfe3
commit
af75fb855f
1 ficheiros alterados
com
3 adições
e
1 exclusões
Visão Dividida
Mostrar Estatísticas 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
+ })
}
}
}