attrs.rsx 519 B

1234567891011121314151617181920212223242526272829303132333435
  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. // Comment head
  19. div {
  20. class: "asd",
  21. "Jon"
  22. }
  23. // Comment head
  24. div {
  25. // Collapse
  26. class: "asd",
  27. "Jon"
  28. }
  29. }