(_: Self::Properties, link: ComponentLink<Self>)
| 19 | type Message = Msg; |
| 20 | type Properties = (); |
| 21 | fn create(_: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 22 | Self { |
| 23 | link, |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | fn change(&mut self, _props: Self::Properties) -> ShouldRender { |
| 28 | false |