handlerror.rs 260 B

1234567891011121314151617
  1. //! Handling errors and early aborts
  2. //!
  3. //!
  4. //!
  5. //!
  6. use dioxus_core::prelude::*;
  7. use thiserror::Error;
  8. fn main() {
  9. /*
  10. If a component returns None, do we leave it the same way it was before?
  11. We spent all this time wiping the component
  12. */
  13. }