pub trait Component: 'static { // Required method fn render(&self, manager: &mut Manager<'_>) -> Element; }
Platform-specific component trait.
Render function that must be implemented by components.