🚧 Simplify basic components

This commit is contained in:
Manuel Cillero 2024-03-08 22:28:31 +01:00
parent c65ac74a6f
commit 496c9d375b
5 changed files with 14 additions and 32 deletions

View file

@ -160,6 +160,12 @@ pub use html::Html;
mod fluent;
pub use fluent::Fluent;
mod error403;
pub use error403::Error403;
mod error404;
pub use error404::Error404;
mod wrapper;
pub use wrapper::{Wrapper, WrapperType};
@ -189,12 +195,6 @@ pub use branding::Branding;
mod powered_by;
pub use powered_by::{PoweredBy, PoweredByLogo};
mod error403;
pub use error403::Error403;
mod error404;
pub use error404::Error404;
pub mod menu;
pub use menu::Menu;