testbed.rs 168 B

123456789101112131415
  1. use dioxus::prelude::*;
  2. fn main() {}
  3. static App: FC<()> = |cx| {
  4. //
  5. cx.render(rsx!(
  6. div {
  7. h1 {}
  8. }
  9. ))
  10. };
  11. #[test]
  12. fn blah() {}