1234567891011121314 |
- 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,
- )
- });
- }
|