mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 05:03:06 +00:00
51 lines
1.1 KiB
Text
51 lines
1.1 KiB
Text
|
rsx! {
|
||
|
div {
|
||
|
key: "ddd",
|
||
|
class: "asd",
|
||
|
class: "asd",
|
||
|
class: "asd",
|
||
|
class: "asd",
|
||
|
class: "asd",
|
||
|
class: "asd",
|
||
|
blah: 123,
|
||
|
onclick: move |_| {
|
||
|
let blah = 120;
|
||
|
true
|
||
|
},
|
||
|
onclick: move |_| {
|
||
|
let blah = 120;
|
||
|
true
|
||
|
},
|
||
|
onclick: move |_| {
|
||
|
let blah = 120;
|
||
|
true
|
||
|
},
|
||
|
onclick: move |_| {
|
||
|
let blah = 120;
|
||
|
true
|
||
|
},
|
||
|
div {
|
||
|
div { "hi" }
|
||
|
h2 { class: "asd" }
|
||
|
}
|
||
|
Component {}
|
||
|
Component<Generic> {}
|
||
|
}
|
||
|
|
||
|
// Long attributes
|
||
|
div {
|
||
|
a: "1234567891012345678910123456789101234567891012345678910123456789101234567891012345678910123456789101234567891012345678910",
|
||
|
a: "123",
|
||
|
a: "123",
|
||
|
a: "123",
|
||
|
a: "123",
|
||
|
a: "123",
|
||
|
a: "123",
|
||
|
a: "123",
|
||
|
a: "123"
|
||
|
}
|
||
|
|
||
|
// Short attributes
|
||
|
div { a: "123", a: "123", a: "123", a: "123", a: "123", a: "123", a: "123", a: "123", a: "123" }
|
||
|
}
|