mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-02 17:09:11 +00:00
14 lines
173 B
Text
14 lines
173 B
Text
|
rsx! {
|
||
|
// Does this work?
|
||
|
for i in b {
|
||
|
// Hey it works?
|
||
|
div {}
|
||
|
}
|
||
|
|
||
|
// Some ifchain
|
||
|
if a > 10 {
|
||
|
//
|
||
|
rsx! { div {} }
|
||
|
}
|
||
|
}
|