(props: Self::Properties, link: ComponentLink<Self>)
| 59 | type Properties = RadarChartProps; |
| 60 | |
| 61 | fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self { |
| 62 | Self { |
| 63 | link, |
| 64 | props, |
| 65 | node_ref: NodeRef::default(), |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | fn update(&mut self, msg: Self::Message) -> ShouldRender { |
| 70 | match msg { |
nothing calls this directly
no outgoing calls
no test coverage detected