(props: Self::Properties, link: ComponentLink<Self>)
| 64 | type Properties = CardProps; |
| 65 | |
| 66 | fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 67 | Self { |
| 68 | link, |
| 69 | label: props.label, |
| 70 | // onsignal: props.onsignal, |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 75 | match msg { |
nothing calls this directly
no outgoing calls
no test coverage detected