This commit is contained in:
Bianca Fürstenau 2025-03-05 20:15:11 +01:00
parent eda34db508
commit be9b5ed855
12 changed files with 43 additions and 45 deletions

View file

@ -1,9 +1,7 @@
use leptos::prelude::*;
use bkbh::leptos::cafe::Cafe;
use leptos::prelude::*;
fn main() {
console_error_panic_hook::set_once();
leptos::mount::mount_to_body(
|| view! { <Cafe /> }
);
leptos::mount::mount_to_body(|| view! { <Cafe /> });
}