7 lines
159 B
Rust
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> }
|
|
}
|