tinkr 0.0.43

Tinkr is a web framework for quickly building full-stack web applications with Leptos.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use leptos::prelude::*;

#[component]
pub fn Label(children: Children) -> impl IntoView {
    view! {
        <label class="block text-sm font-medium text-neutral-500 dark:text-neutral-500 mb-1">
            {children()}
        </label>
    }
    .into_view()
}