This commit is contained in:
2025-05-29 21:27:15 -04:00
parent 0de755cfc9
commit adf682a981
12 changed files with 59 additions and 83 deletions
+1 -3
View File
@@ -6,9 +6,7 @@ pub fn Home() -> Element {
let query = use_signal(|| "".to_string());
rsx! {
Search {
query: query
},
Search { query }
MediaGrid { query: query.cloned() }
}
}