(props: Self::Properties, link: ComponentLink<Self>)
| 53 | type Properties = ButtonProps; |
| 54 | |
| 55 | fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 56 | Self { |
| 57 | link, |
| 58 | props, |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 63 | match msg { |
nothing calls this directly
no outgoing calls
no test coverage detected