mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 04:33:06 +00:00
13 lines
169 B
Rust
13 lines
169 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
launch_desktop(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
rsx! {
|
|
web-component {
|
|
"my-prop": "5%",
|
|
}
|
|
}
|
|
}
|