1
0

web_component.rs 197 B

12345678910111213
  1. use dioxus::prelude::*;
  2. fn main() {
  3. dioxus_desktop::launch(app);
  4. }
  5. fn app(cx: Scope) -> Element {
  6. cx.render(rsx! {
  7. web-component {
  8. "my-prop": "5%",
  9. }
  10. })
  11. }