add: more TUI stuff

This commit is contained in:
Charles
2024-11-23 14:00:13 -08:00
parent 20c48e3cc4
commit 49b81c7d97
7 changed files with 875 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
mod model;
mod hellolabel;
pub use model::*;
#[derive(Debug, PartialEq)]
pub enum Msg {
AppClose,
}
// Let's define the component ids for our application
#[derive(Debug, Eq, PartialEq, Clone, Hash)]
pub enum Id {
Label,
}