mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-18 08:33:07 +00:00
9 lines
192 B
Rust
9 lines
192 B
Rust
|
use dioxus_core::prelude::*;
|
||
|
use dioxus_core_macro::rsx_template;
|
||
|
|
||
|
fn main() {
|
||
|
let g = html!("<div> </div>");
|
||
|
let g = html!("<div> </div>");
|
||
|
// let g = rsx!("div { div { } } ");
|
||
|
}
|