mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-03-08 01:07:43 +00:00
8 lines
232 B
Rust
8 lines
232 B
Rust
//! Example: Null/None Children
|
|
//! ---------------------------
|
|
//!
|
|
//! This is a simple pattern that allows you to return no elements!
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
pub static Example: Component = |cx| cx.render(rsx! { Fragment {} });
|