mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
T
in For
component does *not* need to be Eq
This commit is contained in:
parent
45e2c09e53
commit
835c465c34
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ where
|
|||
G: Fn(Scope, &T) -> Element,
|
||||
I: Fn(&T) -> K,
|
||||
K: Eq + Hash,
|
||||
T: Eq + 'static,
|
||||
T: 'static,
|
||||
{
|
||||
/// Items over which the component should iterate.
|
||||
pub each: E,
|
||||
|
|
Loading…
Reference in a new issue