(props: Self::Properties, _: ComponentLink<Self>)
| 40 | type Properties = CheckListItemProps; |
| 41 | |
| 42 | fn create(props: Self::Properties, _: ComponentLink<Self>) -> Self { |
| 43 | // CheckListItem::ensure_loaded(); |
| 44 | // Self { |
| 45 | // props, |
| 46 | // node_ref: NodeRef::default(), |
| 47 | // request_selected_listener: None, |
| 48 | // } |
| 49 | unimplemented!() |
| 50 | } |
| 51 | |
| 52 | fn update(&mut self, _msg: Self::Message) -> ShouldRender { |
| 53 | false |
nothing calls this directly
no outgoing calls
no test coverage detected