use tide_jsx::{component, html, rsx}; #[component] fn Heading<'title>(title: &'title str) { rsx! {

{title}

} } fn main() { html! { }; }