babel-plugin-transform-functional-jsx

7.0.0 • Public • Published

babel-plugin-transform-functional-jsx

Pure functional & spread children support

Example

In

<div>
  <a href="other.html">Link</a>
  <ul>
    {...[<li>Item A</li>, <li>Item B</li>]}
    <li>Item Last</li>
  </ul>
</div>

Out

div(
  null,
  a({ href: "other.html" }, "Link"),
  ul(
    null,
    ...[li(null, "Item A"), li(null, "Item B")],
    li(null, "Item Last")
  )
);

/babel-plugin-transform-functional-jsx/

    Package Sidebar

    Install

    npm i babel-plugin-transform-functional-jsx

    Weekly Downloads

    2

    Version

    7.0.0

    License

    MIT

    Unpacked Size

    34.7 MB

    Total Files

    7630

    Last publish

    Collaborators

    • rhyzx