empty.rs 240 B

123456789101112
  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. //
  9. cx.render(rsx! {})
  10. };