This commit is contained in:
Jonathan Kelley 2024-01-10 22:52:41 -08:00
parent fa9d92f956
commit c5dfbd7913
No known key found for this signature in database
GPG key ID: 1FBB50F7EB0A08BE
2 changed files with 5 additions and 2 deletions

View file

@ -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 } }
}

View file

@ -267,10 +267,10 @@ async fn test_auto_fmt() {
let test_rsx = r#"
//
rsx! {
div {}
}
//
//