dioxus/examples/reference/empty.rs

9 lines
237 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!
fn main() {}
2021-07-11 22:39:45 +00:00
use dioxus::prelude::*;
static Example: FC<()> = |cx| cx.render(rsx! { Fragment {} });