summary refs log tree commit diff
path: root/src/components/renderer/mod.rs
blob: 5a30c2e3d9e22d2084e8aa743135564710bb1ba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use leptos::prelude::*;
use leptos::{component, view, IntoView};

#[component]
pub fn WikiPage(// page_data: Page,
    // parent_namespaces: Vec<Namespace>
) -> impl IntoView {
    view! {
        <h1>Article (Viewing)</h1>
        <p>Page render</p>
    }
}