dioxus/examples/reference/empty.rs
2021-07-11 18:39:45 -04:00

8 lines
237 B
Rust

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