diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs index c5705db..302c63a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,9 +13,12 @@ pub mod components { pub(crate) use post_editor::{ PostEditor, Input as PostEditorInput }; + + pub(crate) mod tag_pill; + pub(crate) use tag_pill::{TagPill, TagPillDelete}; } -use components::post_editor::{Post, Visibility}; +use components::post_editor::Post; pub mod secrets; pub mod micropub; |