summaryrefslogtreecommitdiffstats
path: root/src/app/widgets.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/widgets.rs')
-rw-r--r--src/app/widgets.rs17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/app/widgets.rs b/src/app/widgets.rs
index 99e9e210..6bdb0e55 100644
--- a/src/app/widgets.rs
+++ b/src/app/widgets.rs
@@ -1,8 +1,13 @@
-pub mod process_table_widget;
-pub use process_table_widget::*;
+// FIXME: Move this outside of app, along with components?
-pub mod temperature_table_widget;
-pub use temperature_table_widget::*;
+pub mod process_table;
+pub use process_table::*;
-pub mod disk_table_widget;
-pub use disk_table_widget::*;
+pub mod temperature_table;
+pub use temperature_table::*;
+
+pub mod disk_table;
+pub use disk_table::*;
+
+pub mod cpu_graph;
+pub use cpu_graph::*;