(&mut self, props: Self::Properties)
| 63 | } |
| 64 | |
| 65 | fn change(&mut self, props: Self::Properties) -> bool { |
| 66 | if self.props != props { |
| 67 | self.props = props; |
| 68 | true |
| 69 | } else { |
| 70 | false |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | fn view(&self) -> Html { |
| 75 | // disabled=self.props.disabled |
nothing calls this directly
no outgoing calls
no test coverage detected