(props: Self::Properties, _: ComponentLink<Self>)
| 53 | type Properties = TabProps; |
| 54 | |
| 55 | fn create(props: Self::Properties, _: ComponentLink<Self>) -> Self { |
| 56 | // Tab::ensure_loaded(); |
| 57 | Self { |
| 58 | props, |
| 59 | node_ref: NodeRef::default(), |
| 60 | interacted_listener: None, |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | fn update(&mut self, _msg: Self::Message) -> ShouldRender { |
| 65 | false |
nothing calls this directly
no outgoing calls
no test coverage detected