empty.rs 263 B

123456789101112131415
  1. //! Example: Null/None Children
  2. //! ---------------------------
  3. //!
  4. //! This is a simple pattern that allows you to return no elements!
  5. use dioxus::prelude::*;
  6. fn main() {}
  7. static Example: FC<()> = |cx| {
  8. cx.render(rsx! {
  9. div {
  10. }
  11. })
  12. };