dioxus/examples/showcase.rs

32 lines
622 B
Rust
Raw Normal View History

2021-07-02 05:30:52 +00:00
//! Example: Reference Showcase
//! ---------------------------
2021-07-01 20:03:27 +00:00
//!
2021-07-02 05:30:52 +00:00
//! This example provides a cute interface for browsing the reference examples.
2021-07-01 20:03:27 +00:00
2021-07-02 05:30:52 +00:00
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;
2021-07-01 20:03:27 +00:00
}
2021-07-02 05:30:52 +00:00
fn main() {}