feat: with dev environment

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-06-04 12:58:23 +02:00
parent 337642c35f
commit c3b45d9eb6
10 changed files with 569 additions and 14 deletions

View File

@@ -36,7 +36,7 @@ fn HomePage(cx: Scope) -> impl IntoView {
let on_click = move |_| set_count.update(|count| *count += 1);
view! { cx,
<h1>"Welcome to Leptos!"</h1>
<h1 class="text-xl text-red-50">"Welcome to Leptos!"</h1>
<button on:click=on_click>"Click Me: " {count}</button>
}
}