showcase.rs 607 B

123456789101112131415161718192021222324252627282930
  1. //! Example: Reference Showcase
  2. //! ---------------------------
  3. //!
  4. //! This example provides a cute interface for browsing the reference examples.
  5. mod reference {
  6. mod antipatterns;
  7. mod basics;
  8. mod children;
  9. mod conditional_rendering;
  10. mod controlled_inputs;
  11. mod custom_elements;
  12. mod empty;
  13. mod fragments;
  14. mod global_css;
  15. mod inline_styles;
  16. mod iterators;
  17. mod listener;
  18. mod memo;
  19. mod noderefs;
  20. mod signals;
  21. mod spreadpattern;
  22. mod statemanagement;
  23. mod suspense;
  24. mod testing;
  25. mod tostring;
  26. mod webcomponents;
  27. }
  28. fn main() {}