eclipse / n4js

Eclipse Public License 1.0
28 stars 27 forks source link

As a developer I need React jsx files using the new JSX transform #2596

Closed mmews-n4 closed 5 months ago

mmews-n4 commented 6 months ago

The n4jsx compiler compiles a redundant Object.assign() , e.g.

<div foo="ff" />

into

React.createElement('div', Object.assign({
    foo: "ff"
}));

Notes:

also see: 1) here 2) and here

More notes: