Closed Havunen closed 8 years ago
Hey
Its related to this issue: https://github.com/trueadm/inferno/issues/141
When defining spread attributes at the beginning of element it overrides rest of attributes.
<List data={data} {...other} />
is ok
<List {...other} data={data} />
compiles wrongly. data attribute is lost.
This seems to be fixed, closing.
Hey
Its related to this issue: https://github.com/trueadm/inferno/issues/141
When defining spread attributes at the beginning of element it overrides rest of attributes.
is ok
compiles wrongly. data attribute is lost.