mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
14 lines
363 B
Rust
14 lines
363 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,
|
|
[dioxus::events::on::onclick(__cx, move |_| {})],
|
|
[],
|
|
[],
|
|
None,
|
|
)
|
|
});
|
|
}
|