1 2 3 4 5 6 7 8 9 10
use leptos::prelude::*; #[component] pub fn PageError404() -> impl IntoView { view! { <div class=""> <h1>"404 - Page Not Found"</h1> </div> } }