mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-14 00:17:17 +00:00
d9546d9504
* feat: use synchronous router design * feat: function to get router out of dom * chore: restructure workspace to use renderers as packages, not features
24 lines
544 B
Rust
24 lines
544 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
let script = use_state(&cx, String::new);
|
|
let eval = dioxus_desktop::use_eval(&cx);
|
|
|
|
cx.render(rsx! {
|
|
div {
|
|
input {
|
|
placeholder: "Enter an expression",
|
|
value: "{script}",
|
|
oninput: move |e| script.set(e.value.clone()),
|
|
}
|
|
button {
|
|
onclick: move |_| eval(script),
|
|
"Execute"
|
|
}
|
|
}
|
|
})
|
|
}
|