123456789101112131415161718192021 |
- rsx! {
- div {
- // My comment here 1
- // My comment here 2
- // My comment here 3
- // My comment here 4
- class: "asdasd",
- // Comment here
- onclick: move |_| {
- let a = 10;
- let b = 40;
- let c = 50;
- },
- // my comment
- // This here
- "hi"
- }
- }
|