if_.old.rsx 141 B

123456789
  1. use dioxus::prelude::*;
  2. pub fn CoolChild() -> Element {
  3. rsx! {
  4. if cond() {
  5. div { "asasddasdasd" }
  6. }
  7. }
  8. }