Working on input

This commit is contained in:
veeso
2021-03-04 15:03:29 +01:00
parent f3cbbb8d81
commit 135d947c39
5 changed files with 306 additions and 13 deletions

View File

@@ -68,14 +68,6 @@ pub struct Render {
pub cursor: usize, // Cursor position
}
// -- States
/// ## States
///
/// States is a trait which defines the behaviours for the states model for the different component.
/// A state contains internal values for each component.
pub(crate) trait States {}
// -- Component
/// ## Component