ratatui_kit/element/
mod.rs

1mod key;
2pub use key::ElementKey;
3mod any_element;
4pub use any_element::AnyElement;
5mod element_ext;
6pub use element_ext::ElementExt;
7mod element;
8pub use element::Element;
9mod extend_with_elements;
10pub use extend_with_elements::{ExtendWithElements, extend_with_elements};
11
12pub trait ElementType {
13    type Props<'a>
14    where
15        Self: 'a;
16}