use crate::element::{Element, ElementBackend};
pub struct Container {}
impl Container {}
impl ElementBackend for Container {
fn create(_element: &mut Element) -> Self {
Self {}
}
fn get_base_mut(&mut self) -> Option<&mut dyn ElementBackend> {
None
}
}