@@ -61,7 +61,7 @@ impl Buffer {
}
// If there's nothing at all, empty optimization
- if fields.is_empty() && children.is_empty() {
+ if fields.is_empty() && children.is_empty() && manual_props.is_none() {
opt_level = ShortOptimization::Empty;
@@ -31,4 +31,7 @@ rsx! {
// One level compression
div { a { class: "py-2 px-3 bg-indigo-500 hover:bg-indigo-600 rounded text-xs text-white", href: "#", "Send invitation" } }
+
+ // Components
+ Component { ..Props {} }
@@ -12,3 +12,19 @@ macro_rules! twoway {
twoway!("comments" => comments);
+// rsx! {
+// div { class: "asdasd", "hello world" }
+// h1 {
+// // Important handler
+// onclick: move |_| {
+// let a = 10;
+// },
+// div { "hello" }
+// "Goodbye world"
+// }
+// Component {}