(props: Self::Properties, link: ComponentLink<Self>)
| 35 | type Properties = FormfieldProps; |
| 36 | |
| 37 | fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 38 | Self { |
| 39 | link, |
| 40 | // label: props.label, |
| 41 | // onsignal: props.onsignal, |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 46 | // match msg { |
nothing calls this directly
no outgoing calls
no test coverage detected