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

#[component]
pub fn PageError404() -> impl IntoView {
    view! {
        <div class="">
            <h1>"404 - Page Not Found"</h1>
        </div>
    }
}