(props: Self::Properties, link: ComponentLink<Self>)
| 54 | type Properties = TooltipProps; |
| 55 | |
| 56 | fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 57 | Self { |
| 58 | link, |
| 59 | label: props.label, |
| 60 | // onsignal: props.onsignal, |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 65 | match msg { |
nothing calls this directly
no outgoing calls
no test coverage detected