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