pub trait LifeCycle {
// Required methods
fn handle_mount(&mut self);
fn handle_render(&mut self);
fn handle_unmount(&mut self);
}pub trait LifeCycle {
// Required methods
fn handle_mount(&mut self);
fn handle_render(&mut self);
fn handle_unmount(&mut self);
}