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

#[component]
pub fn Version() -> impl IntoView {
    let version = env!("CARGO_PKG_VERSION");

    view! {
        <div class="w-full justify-center mt-5 text-xs flex">
            <span class="text-xs">{version}beta</span>
        </div>
    }
}