cards/client/src/pages/not_found.rs

8 lines
159 B
Rust
Raw Normal View History

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