mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-21 18:13:15 +00:00
17 lines
260 B
Rust
17 lines
260 B
Rust
//! Handling errors and early aborts
|
|
//!
|
|
//!
|
|
//!
|
|
//!
|
|
|
|
use dioxus_core::prelude::*;
|
|
use thiserror::Error;
|
|
|
|
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
|
|
|
|
*/
|
|
}
|