attrs.rsx 352 B

123456789101112131415161718192021
  1. rsx! {
  2. div {
  3. // My comment here 1
  4. // My comment here 2
  5. // My comment here 3
  6. // My comment here 4
  7. class: "asdasd",
  8. // Comment here
  9. onclick: move |_| {
  10. let a = 10;
  11. let b = 40;
  12. let c = 50;
  13. },
  14. // my comment
  15. // This here
  16. "hi"
  17. }
  18. }