pub trait Component: Any + 'static + Send + Sync { // Required method fn new_instance() -> Option<Self> where Self: Sized; }