(&mut self, _: &mut Window, _: &mut Context<Self>)
| 26 | |
| 27 | impl Render for MainViewer { |
| 28 | fn render(&mut self, _: &mut Window, _: &mut Context<Self>) -> impl IntoElement { |
| 29 | div() |
| 30 | .size_full() |
| 31 | .flex_col() |
| 32 | .bg(gpui::white()) |
| 33 | .text_color(gpui::black()) |
| 34 | .child(self.figure.clone()) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | struct MyChart; |
nothing calls this directly
no outgoing calls
no test coverage detected