1use dioxus_core::prelude::use_drop; 2 3#[deprecated(note = "Use `use_drop` instead, which has the same functionality.")] 4pub fn use_on_unmount<D: FnOnce() + 'static>(destroy: D) { 5 use_drop(destroy); 6}