2021-06-22 21:20:54 +00:00
|
|
|
use dioxus_core as dioxus;
|
2021-06-10 05:01:53 +00:00
|
|
|
use dioxus_web::prelude::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
wasm_bindgen_futures::spawn_local(dioxus_web::WebsysRenderer::start(App))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn App(ctx: Context<()>) -> VNode {
|
|
|
|
ctx.render(rsx! {
|
|
|
|
div { "Hello, world!" }
|
|
|
|
})
|
|
|
|
}
|