ifchain_forloop.rsx 173 B

12345678910111213
  1. rsx! {
  2. // Does this work?
  3. for i in b {
  4. // Hey it works?
  5. div {}
  6. }
  7. // Some ifchain
  8. if a > 10 {
  9. //
  10. rsx! { div {} }
  11. }
  12. }