Fix warnings

This commit is contained in:
2024-03-29 21:24:01 -04:00
parent 6cef7ed36d
commit 93ea42b727
6 changed files with 3 additions and 9 deletions

View File

@ -37,7 +37,7 @@ pub fn App() -> impl IntoView {
/// Renders the home page of your application.
#[component]
fn HomePage() -> impl IntoView {
let mut play_status = PlayStatus::default();
let play_status = PlayStatus::default();
let play_status = create_rw_signal(play_status);
view! {