ui: move RelayView into ui module

Trying to keep all UI stuff in there

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-04-19 21:53:47 -07:00
parent 51c25b88cc
commit 2d566cc637
3 changed files with 9 additions and 6 deletions

View File

@@ -1,9 +1,11 @@
pub mod note;
pub mod preview;
pub mod relay;
pub mod username;
pub use note::Note;
pub use preview::{Preview, PreviewApp};
pub use relay::RelayView;
pub use username::Username;
use egui::Margin;