(props: Self::Properties, link: ComponentLink<Self>)
| 56 | type Properties = TopAppBarProps; |
| 57 | |
| 58 | fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 59 | // TopAppBar::ensure_loaded(); |
| 60 | Self { |
| 61 | link, |
| 62 | props, |
| 63 | nav_listener: None, |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 68 | match msg { |
nothing calls this directly
no outgoing calls
no test coverage detected