(&mut self, props: Self::Properties)
| 76 | } |
| 77 | |
| 78 | fn change(&mut self, props: Self::Properties) -> ShouldRender { |
| 79 | if self.props != props { |
| 80 | self.props = props; |
| 81 | true |
| 82 | } else { |
| 83 | false |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | fn view(&self) -> Html { |
| 88 | html! { |
nothing calls this directly
no outgoing calls
no test coverage detected