(props: Self::Properties, _: ComponentLink<Self>)
| 57 | type Properties = ListItemProps; |
| 58 | |
| 59 | fn create(props: Self::Properties, _: ComponentLink<Self>) -> Self { |
| 60 | // ListItem::ensure_loaded(); |
| 61 | Self { |
| 62 | props, |
| 63 | node_ref: NodeRef::default(), |
| 64 | request_selected_listener: None, |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | fn update(&mut self, _msg: Self::Message) -> ShouldRender { |
| 69 | false |
nothing calls this directly
no outgoing calls
no test coverage detected