use dioxus::component::Component; use dioxus::events::on::MouseEvent; use dioxus_core as dioxus; use dioxus_core::prelude::*; use dioxus_core_macro::*; use dioxus_html as dioxus_elements; fn main() {} fn html_usage() { let r = html! {
"hello world"
"hello world"
}; let r = rsx! { div { "hello world" } }; } fn rsx_uage() { // let r = html! { // // "hello world" // "hello world" // "hello world" // "hello world" // // }; }