empty.rs 239 B

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