(props: Self::Properties, _: ComponentLink<Self>)
| 113 | type Properties = TextAreaProps; |
| 114 | |
| 115 | fn create(props: Self::Properties, _: ComponentLink<Self>) -> Self { |
| 116 | // TextArea::ensure_loaded(); |
| 117 | Self { |
| 118 | props, |
| 119 | node_ref: NodeRef::default(), |
| 120 | // validity_transform_closure: None, |
| 121 | input_listener: None, |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | fn update(&mut self, _msg: Self::Message) -> ShouldRender { |
| 126 | false |
nothing calls this directly
no outgoing calls
no test coverage detected