mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 06:30:20 +00:00
15 lines
437 B
Rust
15 lines
437 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
let g = dioxus::prelude::LazyNodes::new(move |__cx: NodeFactory| {
|
|
use dioxus_elements::{GlobalAttributes, SvgAttributes};
|
|
__cx.element(
|
|
dioxus_elements::button,
|
|
__cx.bump()
|
|
.alloc([dioxus::events::on::onclick(__cx, move |_| {})]),
|
|
__cx.bump().alloc([]),
|
|
__cx.bump().alloc([]),
|
|
None,
|
|
)
|
|
});
|
|
}
|