pub trait ComponentAppTrait {
// Required method
fn new(
ctx: &mut ComponentContext<'_>,
) -> impl Future<Output = Box<dyn ComponentBuilder>>
where Self: Sized;
}
pub trait ComponentAppTrait {
// Required method
fn new(
ctx: &mut ComponentContext<'_>,
) -> impl Future<Output = Box<dyn ComponentBuilder>>
where Self: Sized;
}