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