dioxus/examples/ssr.rs
2021-10-16 17:37:28 -04:00

26 lines
508 B
Rust

#![allow(non_upper_case_globals)]
use dioxus::prelude::*;
use dioxus::ssr;
fn main() {
let mut vdom = VirtualDom::new(App);
// vdom.rebuild_in_place().expect("Rebuilding failed");
println!("{}", ssr::render_vdom(&vdom, |c| c));
}
static App: FC<()> = |(cx, props)| {
cx.render(rsx!(
div {
h1 { "Title" }
p { "Body" }
}
))
};
struct MyProps<'a> {
text: &'a str,
}
fn App2<'a>(cx: Context<'a>, props: &'a MyProps) -> DomTree<'a> {
None
}