dioxus/examples/core_reference/empty.rs

9 lines
232 B
Rust
Raw Normal View History

2021-07-02 05:30:52 +00:00
//! Example: Null/None Children
//! ---------------------------
//!
//! This is a simple pattern that allows you to return no elements!
2021-07-11 22:39:45 +00:00
use dioxus::prelude::*;
2021-07-12 06:23:46 +00:00
2021-12-29 04:48:25 +00:00
pub static Example: Component = |cx| cx.render(rsx! { Fragment {} });