(&mut self, props: Self::Properties)
| 138 | } |
| 139 | |
| 140 | fn change(&mut self, props: Self::Properties) -> bool { |
| 141 | if self.props != props { |
| 142 | self.props = props; |
| 143 | true |
| 144 | } else { |
| 145 | false |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | fn view(&self) -> Html { |
| 150 | // hasHeader?=self.props.has_header |
nothing calls this directly
no outgoing calls
no test coverage detected