Skip to content

v2.3.0

Compare
Choose a tag to compare
@j4k0xb j4k0xb released this 08 May 02:26
· 283 commits to master since this release
v2.3.0

Features

  • Convert react components back to JSX.
React.createElement(
  'div',
  null,
  React.createElement('span', null, 'Hello ', name)
);

->

<div>
  <span>Hello {name}</span>
</div>