(props: Self::Properties, _: ComponentLink<Self>)
| 50 | type Properties = RadioProps; |
| 51 | |
| 52 | fn create(props: Self::Properties, _: ComponentLink<Self>) -> Self { |
| 53 | // Radio::ensure_loaded(); |
| 54 | Self { |
| 55 | props, |
| 56 | node_ref: NodeRef::default(), |
| 57 | change_listener: None, |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | fn update(&mut self, _msg: Self::Message) -> ShouldRender { |
| 62 | false |
nothing calls this directly
no outgoing calls
no test coverage detected