You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CSSProperties is a vary handy type when coding some HTML element style, but I found that inferno 8.0 changed the style property's type to any. What's the consideration of this changing?
The text was updated successfully, but these errors were encountered:
Yeah, I'm planning to add them back, but need to think how to get it done nicely.
React.CssProperties is based on this package: https://github.com/frenic/csstype
which types them like textAlign: 'middle', in inferno that would be: text-align: 'middle', or it could be given as style string
CSSProperties is a vary handy type when coding some HTML element style, but I found that inferno 8.0 changed the
style
property's type toany
. What's the consideration of this changing?The text was updated successfully, but these errors were encountered: