1.0.0 • Published 5 years ago

babel-react-rif v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

如何使用

<div>
  <h1 r-if={height < 170}>good</h1>
  <h1 r-else-if={height >180}>best</h1>
  <h1 r-else>other</h1>
</div>

效果

React.createElement("div", null, (() => {
  if (height < 170) return React.createElement("h1", null, "good");else if (height > 180) return React.createElement("h1", null, "best");else return React.createElement("h1", null, "other");
})());