empty.rs 243 B

12345678
  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. pub static Example: Component<()> = |cx, props| cx.render(rsx! { Fragment {} });