Merge remote-tracking branch 'origin/main' into 22-create-home-page-2

This commit is contained in:
2024-04-06 15:58:49 -04:00
13 changed files with 177 additions and 24 deletions

View File

@ -43,7 +43,7 @@ use crate::components::personal::*;
/// 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);
let (dashboard_open, set_dashboard_open) = create_signal(true);