//! Native-canvas: render wgpu textures to the `<canvas>` element. use dioxus::prelude::*; fn main() { dioxus::launch(app); } fn app() -> Element { rsx! {} }