(props: Self::Properties, link: ComponentLink<Self>)
| 33 | type Properties = CircularProgressProps; |
| 34 | |
| 35 | fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 36 | Self { |
| 37 | link, |
| 38 | // label: props.label, |
| 39 | // onsignal: props.onsignal, |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 44 | // match msg { |
nothing calls this directly
no outgoing calls
no test coverage detected