Begin add PostList routes + 404

This commit is contained in:
Florian RICHER 2023-11-26 17:17:31 +01:00
parent c2df86fc33
commit 224b5d4832
6 changed files with 54 additions and 34 deletions

13
src/app/pages/posts.rs Normal file
View file

@ -0,0 +1,13 @@
use leptos::*;
use leptos_router::*;
#[component]
pub fn PostList(
folder: String
) -> impl IntoView {
view! {
<main class="m-0 p-0 bg-surface dark:bg-dark_surface text-on_surface dark:text-dark_on_surface">
Page List
</main>
}
}