2022-07-05 04:22:06 +00:00
|
|
|
rsx! {
|
2022-07-05 21:59:33 +00:00
|
|
|
div {
|
|
|
|
// Comments
|
|
|
|
class: "asdasd",
|
|
|
|
"hello world"
|
|
|
|
}
|
2022-07-05 04:22:06 +00:00
|
|
|
div {
|
2022-07-05 21:49:16 +00:00
|
|
|
// 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"
|
|
|
|
}
|
2022-07-05 04:30:09 +00:00
|
|
|
|
2022-07-05 21:49:16 +00:00
|
|
|
// Comment head
|
|
|
|
div { class: "asd", "Jon" }
|
2022-07-05 04:30:09 +00:00
|
|
|
|
2022-07-05 21:49:16 +00:00
|
|
|
// Comment head
|
|
|
|
div {
|
|
|
|
// Collapse
|
|
|
|
class: "asd",
|
|
|
|
"Jon"
|
2022-07-05 04:22:06 +00:00
|
|
|
}
|
|
|
|
}
|