This website works better with JavaScript
Halaman utama
Jelajahi
Bantuan
Masuk
lenn
/
dioxus-mirror
cermin dari
https://github.com/DioxusLabs/dioxus.git
Liatin
1
Bintangi
0
Fork
0
Berkas
Masalah
0
Wiki
Jelajahi Sumber
wrap the result of render_with_location in an option
Evan Almloff
1 tahun lalu
induk
913ed0cfe3
melakukan
af75fb855f
1 mengubah file
dengan
3 tambahan dan
1 penghapusan
Tampilan Split
Tampilkan Statistik Diff
3
1
packages/rsx/src/lib.rs
+ 3
- 1
packages/rsx/src/lib.rs
Tampilan Berkas
@@ -85,7 +85,9 @@ impl CallBody {
};
quote! {
- #body
+ Some({
+ #body
+ })
}
}
}