(&mut self, props: Self::Properties)
| 74 | } |
| 75 | |
| 76 | fn change(&mut self, props: Self::Properties) -> bool { |
| 77 | if self.props != props { |
| 78 | self.props = props; |
| 79 | true |
| 80 | } else { |
| 81 | false |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | fn view(&self) -> Html { |
| 86 | // centerTitle?=to_option(self.props.center_title) |
nothing calls this directly
no outgoing calls
no test coverage detected