blob: 7b5c1277e0769be4bdc404f29c62335746b0f9f9 (
plain) (
blame)
1
2
3
4
5
6
|
use leptos::{IntoView, component, prelude::ElementChild, view};
#[component]
pub fn NotFound() -> impl IntoView {
view! { <h1>"Uh oh!" <br /> "We couldn't find that page!"</h1> }
}
|