(props: Self::Properties, _: ComponentLink<Self>)
| 56 | type Properties = SliderProps; |
| 57 | |
| 58 | fn create(props: Self::Properties, _: ComponentLink<Self>) -> Self { |
| 59 | // Slider::ensure_loaded(); |
| 60 | Self { |
| 61 | props, |
| 62 | node_ref: NodeRef::default(), |
| 63 | input_listener: None, |
| 64 | change_listener: None, |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | fn update(&mut self, _msg: Self::Message) -> ShouldRender { |
| 69 | false |
nothing calls this directly
no outgoing calls
no test coverage detected