(props: Self::Properties, link: ComponentLink<Self>)
| 21 | type Properties = IconProps; |
| 22 | |
| 23 | fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 24 | Self { |
| 25 | link, |
| 26 | // label: props.label, |
| 27 | // onsignal: props.onsignal, |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 32 | // match msg { |
nothing calls this directly
no outgoing calls
no test coverage detected