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