mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-13 16:07:20 +00:00
31 lines
622 B
Rust
31 lines
622 B
Rust
//! Example: Reference Showcase
|
|
//! ---------------------------
|
|
//!
|
|
//! This example provides a cute interface for browsing the reference examples.
|
|
|
|
mod reference {
|
|
mod antipatterns;
|
|
mod basics;
|
|
mod children;
|
|
mod conditional_rendering;
|
|
mod controlled_inputs;
|
|
mod custom_elements;
|
|
mod empty;
|
|
mod fiber;
|
|
mod fragments;
|
|
mod global_css;
|
|
mod inline_styles;
|
|
mod iterators;
|
|
mod listener;
|
|
mod memo;
|
|
mod noderefs;
|
|
mod signals;
|
|
mod spreadpattern;
|
|
mod statemanagement;
|
|
mod suspense;
|
|
mod testing;
|
|
mod tostring;
|
|
mod webcomponents;
|
|
}
|
|
|
|
fn main() {}
|