123456789101112131415161718192021222324252627282930 |
- //! 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 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() {}
|