Is there a better way to access a typed `AttrScope...
# kobweb
n
Is there a better way to access a typed
AttrScope
?
Copy code
Select(
    Modifier
        .attrsModifier {
            this as SelectAttrsScope // Not nice :(
            onChange { ... }
        }
        ...
Thanks.
d
Modifier.toAttrs { ... }
should be typed
👍🏻 1