rename file

This commit is contained in:
Stephan Dilly 2020-03-30 16:46:45 +02:00
parent d21ed0467b
commit 3303003902
2 changed files with 2 additions and 2 deletions

View file

@ -1,16 +1,16 @@
use crossterm::event::Event;
use tui::{backend::Backend, layout::Rect, Frame};
mod changes;
mod command;
mod commit;
mod diff;
mod help;
mod index;
pub use changes::IndexComponent;
pub use command::CommandInfo;
pub use commit::CommitComponent;
pub use diff::DiffComponent;
pub use help::HelpComponent;
pub use index::IndexComponent;
///
pub trait Component {