blob: 05e45d38f67ce31b4846bf2d3414024419367bc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use leptos::prelude::*;
use leptos::{island, view, IntoView};
#[island]
pub fn WikiEditor(
url_path: String,
) -> impl IntoView {
view! {
<h1>Article (Editing)</h1>
<p>Page render</p>
<pre>{url_path}</pre>
}
}
|