dioxus/examples/reference/empty.rs
2021-07-16 16:11:25 -04:00

8 lines
229 B
Rust

//! Example: Null/None Children
//! ---------------------------
//!
//! This is a simple pattern that allows you to return no elements!
use dioxus::prelude::*;
pub static Example: FC<()> = |cx| cx.render(rsx! { Fragment {} });