diff --git a/src/app.rs b/src/app.rs index fe828a6..ae1aa39 100644 --- a/src/app.rs +++ b/src/app.rs @@ -30,14 +30,7 @@ pub fn App() -> impl IntoView { /// Renders the home page of your application. #[component] fn HomePage() -> impl IntoView { - // Creates a reactive value to update the button - let (count, set_count) = create_signal(0); - let on_click = move |_| set_count.update(|count| *count += 1); - - view! { -