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
use leptos::prelude::*;

#[component]
pub fn Seperator() -> impl IntoView {
    view! { <div class="border-b-2 border-neutral-200 dark:border-neutral-700 my-2 w-full"></div> }
}