cards/client/src/pages/not_found.rs
2024-07-18 04:00:56 -04:00

7 lines
159 B
Rust

use leptos::*;
/// 404 Not Found Page
#[component]
pub fn NotFound() -> impl IntoView {
view! { <h1>"Uh oh!" <br/> "We couldn't find that page!"</h1> }
}