use leptos::prelude::*; use leptos::{island, view, IntoView}; #[island] pub fn WikiEditor( url_path: String, ) -> impl IntoView { view! {

Article (Editing)

Page render

{url_path}
} }