(props: Self::Properties, link: ComponentLink<Self>)
| 45 | type Properties = FabProps; |
| 46 | |
| 47 | fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 48 | Self { |
| 49 | link, |
| 50 | label: props.label, |
| 51 | // onsignal: props.onsignal, |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 56 | match msg { |
nothing calls this directly
no outgoing calls
no test coverage detected