use leptos::{IntoView, component, prelude::ElementChild, view}; #[component] pub fn NotFound() -> impl IntoView { view! {

"Uh oh!"
"We couldn't find that page!"

} }