Is there a way to hydrate multiple selectors at once? At the moment i'm doing this way: ```javascript document.querySelectorAll('.toggle').forEach(i => hydrate(Toggle(), i)) ``` Because it seems that the `hydrate`'s second argument receives a single element.
Is there a way to hydrate multiple selectors at once?
At the moment i'm doing this way:
Because it seems that the
hydrate's second argument receives a single element.