diffing.rs 306 B

1234567891011121314151617
  1. use dioxus::prelude::*;
  2. use dioxus_core as dioxus;
  3. use dioxus_html as dioxus_elements;
  4. #[test]
  5. fn diffing_works() {}
  6. #[test]
  7. fn html_and_rsx_generate_the_same_output() {
  8. let old = rsx! {
  9. div { "Hello world!" }
  10. };
  11. // let new = html! {
  12. // <div>"Hello world!"</div>
  13. // };
  14. }