pub trait ComponentStatic {
    type Props: Props;
    type Element;
    fn create_element(props: Self::Props, key: Option<Key>) -> Self::Element;
}

Associated Types

Required methods

Implementors