(props: Self::Properties, link: ComponentLink<Self>)
| 86 | type Properties = ListProps; |
| 87 | |
| 88 | fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 89 | // props.list_link.borrow_mut().replace(link); |
| 90 | // List::ensure_loaded(); |
| 91 | Self { |
| 92 | props, |
| 93 | node_ref: NodeRef::default(), |
| 94 | action_listener: None, |
| 95 | selected_listener: None, |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | fn update(&mut self, _msg: Self::Message) -> ShouldRender { |
| 100 | false |
nothing calls this directly
no outgoing calls
no test coverage detected