1
0

native-canvas.rs 169 B

1234567891011
  1. //! Native-canvas: render wgpu textures to the `<canvas>` element.
  2. use dioxus::prelude::*;
  3. fn main() {
  4. dioxus::launch(app);
  5. }
  6. fn app() -> Element {
  7. rsx! {}
  8. }