dioxus/packages/core/examples/handlerror.rs

18 lines
260 B
Rust
Raw Normal View History

//! Handling errors and early aborts
//!
//!
//!
//!
use dioxus_core::prelude::*;
use thiserror::Error;
2021-12-19 04:03:59 +00:00
fn main() {
/*
If a component returns None, do we leave it the same way it was before?
We spent all this time wiping the component
*/
}