(&mut self, props: Self::Properties)
| 109 | } |
| 110 | |
| 111 | fn change(&mut self, props: Self::Properties) -> bool { |
| 112 | if self.props != props { |
| 113 | self.props = props; |
| 114 | true |
| 115 | } else { |
| 116 | false |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | fn view(&self) -> Html { |
| 121 | // open=self.props.open |
nothing calls this directly
no outgoing calls
no test coverage detected