dioxus/packages/autofmt/tests/samples/ifchain_forloop.rsx

14 lines
173 B
Text
Raw Normal View History

2023-01-13 18:51:12 +00:00
rsx! {
// Does this work?
for i in b {
// Hey it works?
div {}
}
// Some ifchain
if a > 10 {
//
rsx! { div {} }
}
}