mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-18 16:43:21 +00:00
12 lines
240 B
Rust
12 lines
240 B
Rust
//! Example: Null/None Children
|
|
//! ---------------------------
|
|
//!
|
|
//! This is a simple pattern that allows you to return no elements!
|
|
|
|
use dioxus::prelude::*;
|
|
fn main() {}
|
|
|
|
static Example: FC<()> = |cx| {
|
|
//
|
|
cx.render(rsx! {})
|
|
};
|