comments.rsx 506 B

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