1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
//! some basic test cases with nested rsx!
fn App() -> Element {
let mut count = use_signal(|| 0);
let mut text = use_signal(|| "...".to_string());
rsx! {
div {
div { "hi" }
div {
header: rsx! {
div { class: "max-w-lg lg:max-w-2xl mx-auto mb-16 text-center",
"gomg"
"hi!!"
"womh"
}
},
header: rsx! {
div { class: "max-w-lg lg:max-w-2xl mx-auto mb-16 text-center",
"gomg"
"hi!!"
"womh"
}
},
header: rsx! {
div { class: "max-w-lg lg:max-w-2xl mx-auto mb-16 text-center",
"gomg"
// "hi!!"
"womh"
}
},
onclick: move |_| {
rsx! {
div { class: "max-w-lg lg:max-w-2xl mx-auto mb-16 text-center",
"gomg"
"hi!!"
"womh"
}
}
println!("hi")
},
"hi"
}
ContentList { header, content: &BLOG_POSTS, readmore: true }
}
Component {
header: rsx! {
h1 { "hi" }
h1 { "hi" }
},
blah: rsx! {
h1 { "hi" }
},
blah: rsx! {
h1 { "hi" }
},
blah: rsx! {
h1 { "hi" }
},
blah: rsx! { "hi" },
blah: rsx! {
h1 { "hi" }
Component {
header: rsx! {
Component {
header: rsx! {
div { "hi" }
h3 { "hi" }
p { "hi" }
Component {
onrender: move |_| {
count += 1;
let abc = rsx! {
div {
h1 { "hi" }
"something nested?"
Component {
onrender: move |_| {
count2 += 1;
rsx! {
div2 {
h12 { "hi" }
"so22mething nested?"
}
}
},
}
}
};
rsx! {
div {
h1 { "hi" }
"something nested?"
}
}
},
}
},
}
},
}
},
onrender: move |_| {
count += 1;
rsx! {
div {
h1 { "hi" }
"something nested?"
}
Component2 {
header2: rsx! {
h1 { "hi1" }
h1 { "hi2" }
},
onrender2: move |_| {
count2 += 1;
rsx! {
div2 {
h12 { "hi" }
"so22mething nested?"
}
}
},
{
rsx! {
div2 {
h12 { "hi" }
"so22mething nested?"
}
}
}
}
}
},
div {
onclick: move |_| {
let val = rsx! {
div {
h1 { "hi" }
"something nested?"
}
};
},
}
}
}
}