mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
36 lines
717 B
Rust
36 lines
717 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
let mut dom = VirtualDom::prebuilt(app);
|
|
let html = dioxus_ssr::render(&dom);
|
|
|
|
println!("{}", html);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
rsx! {
|
|
spreadable_component {
|
|
width: "10px",
|
|
extra_data: "hello{1}",
|
|
extra_data2: "hello{2}",
|
|
height: "10px",
|
|
left: 1
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Props, PartialEq, Clone)]
|
|
struct Props {
|
|
#[props(extends = GlobalAttributes)]
|
|
attributes: Vec<Attribute>,
|
|
|
|
extra_data: String,
|
|
|
|
extra_data2: String,
|
|
}
|
|
|
|
fn spreadable_component(props: Props) -> Element {
|
|
rsx! {
|
|
audio { ..props.attributes, "1: {props.extra_data}\n2: {props.extra_data2}" }
|
|
}
|
|
}
|