From c8f4b5240b8bcfb5b575bd12b09c68e96e15d37f Mon Sep 17 00:00:00 2001 From: Vika Date: Fri, 23 Aug 2024 01:57:09 +0300 Subject: Tags in posts --- src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/lib.rs') 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; -- cgit 1.4.1