@@ -8,8 +8,11 @@ fn app(cx: Scope) -> Element {
let a = 123;
let b = 456;
let c = 789;
+ let class = "class";
+ let id = "id";
render! {
+ div { class, id }
Component { a, b, c }
Component { a, ..ComponentProps { a: 1, b: 2, c: 3 } }
}
@@ -267,10 +267,10 @@ async fn test_auto_fmt() {
let test_rsx = r#"
//
- rsx! {
+
div {}
- }