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