pub enum CurrentWidget {
    AccountList,
    TrxList,
}
pub enum CurrentScreen {
    Main,
    Exiting,
    NewAccount,
    NewTransaction,
}

#[derive(PartialEq)]
pub enum TransactionInput {
    Type,
    Amount,
    Date,
    Description,
    Asset,
}

#[derive(PartialEq)]
pub enum AccountInput {
    Asset,
    Name,
    Type,
}