12345678910111213141516171819202122232425262728293031323334 |
- //! An example that shows how to:
- //! create a scope,
- //! render a component,
- //! change some data
- //! render it again
- //! consume the diffs and write that to a renderer
- use dioxus_core::{prelude::*, scope::Scope};
- fn main() -> Result<(), ()> {
- let p1 = Props { name: "bob".into() };
- let mut vdom = VirtualDom::new_with_props(Example, p1);
- vdom.progress()?;
- Ok(())
- }
- struct Props {
- name: String,
- }
- impl Properties for Props {
- fn new() -> Self {
- todo!()
- }
- }
- static Example: FC<Props> = |ctx| {
- ctx.view(html! {
- <div>
- <h1> </h1>
- </div>
- })
- };
|