1
2
3
4
5
6
7
//! Detach an app from the DOM.

/// Detach an app from the DOM.
pub trait Detach<Message> {
    /// Detach an app from the DOM.
    fn detach(&self);
}