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