mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 06:30:20 +00:00
36 lines
764 B
Rust
36 lines
764 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
let mut dom = VirtualDom::new(app);
|
|
let _ = dom.rebuild();
|
|
let html = dioxus_ssr::render(&dom);
|
|
|
|
println!("{}", html);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
render! {
|
|
Component {
|
|
width: "10px",
|
|
extra_data: "hello{1}",
|
|
extra_data2: "hello{2}",
|
|
height: "10px",
|
|
left: 1
|
|
}
|
|
}
|
|
}
|
|
|
|
#[component]
|
|
fn Component<'a>(cx: Scope<'a, Props<'a>>) -> Element<'a> {
|
|
render! {
|
|
audio { ..cx.props.attributes, "1: {cx.props.extra_data}\n2: {cx.props.extra_data2}" }
|
|
}
|
|
}
|
|
|
|
#[derive(Props)]
|
|
struct Props<'a> {
|
|
#[props(extends = GlobalAttributes)]
|
|
attributes: Vec<Attribute<'a>>,
|
|
extra_data: &'a str,
|
|
extra_data2: &'a str,
|
|
}
|