| 7 | |
| 8 | #[derive(Debug, State)] |
| 9 | struct RootState { |
| 10 | input: StateValue<String>, |
| 11 | cursor_pos: StateValue<usize>, |
| 12 | output: StateValue<String>, |
| 13 | } |
| 14 | |
| 15 | struct RootView { |
| 16 | state: RootState, |
nothing calls this directly
no outgoing calls
no test coverage detected