Elm-inspired library for building tui interfaces Thuja heavily relies on the tui crate and essentially is just an (opinionated) wrapper around it. Thuja uses crossterm as a terminal backend.
The simples app looks like this: ```rust use thuja::{components::list::List, Component, Thuja};
fn main() -> Result<(), Box
```
This code will display a list of three elements, with the fist one selected. You can switch between elements using arrow keys.
Pretty simple, right?
See the docs for further information.
As said, it is Elm-inspired and also consonant with "tui" (terminal user interface). Got it?