Skip to content

Commit

Permalink
Update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lpotthast committed Mar 26, 2024
1 parent bfe6a81 commit 955dab4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion leptos_dom/src/html.rs
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,9 @@ impl<El: ElementDescriptor + 'static> HtmlElement<El> {
#[track_caller]
#[deprecated(
since = "0.6.10",
note = "Please call `bindings` instead. It can act as a drop-in-replacement but can handle both attributes and event handlers at the same time."
note = "Please call `bindings` instead. It can act as a \
drop-in-replacement but can handle both attributes and event \
handlers at the same time."
)]
pub fn attrs(
mut self,
Expand Down
5 changes: 4 additions & 1 deletion leptos_dom/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ pub use directive::*;
pub use events::add_event_helper;
#[cfg(all(target_arch = "wasm32", feature = "web"))]
use events::{add_event_listener, add_event_listener_undelegated};
pub use events::{typed as ev, typed::EventHandler, typed::EventHandlerFn};
pub use events::{
typed as ev,
typed::EventHandler, typed::EventHandlerFn
};
pub use html::HtmlElement;
use html::{AnyElement, ElementDescriptor};
pub use hydration::{HydrationCtx, HydrationKey};
Expand Down

0 comments on commit 955dab4

Please sign in to comment.