fiber.rs 126 B

12345678910
  1. use dioxus::prelude::*;
  2. fn main() {}
  3. static Example: FC<()> = |cx| {
  4. cx.render(rsx! {
  5. div {
  6. }
  7. })
  8. };