Documentation
1
2
3
4
5
6
7
8
pub use leptos::{component, view, Children, IntoView};

#[macro_export]
macro_rules! html {
    ($($view:tt)*) => {{
        leptos::ssr::render_to_string(|| view! { $($view)* }).to_string()
    }};
}