react-real-math icon indicating copy to clipboard operation
react-real-math copied to clipboard

Do math with a DSL as easy as React.js!

react-real-math

Do math with a DSL as easy as React.js!

Install

$ yarn add react-real-math

Example

import { computeValue, Add, Multiply, Subtract, One, Two, Four, Five } from 'react-real-math'

console.log("The answer to everything:", computeValue(
  <Add>
    <Two/>
    <Multiply by={<Four/>}>
      <Subtract by={<One/>}>
        <Add>
          <Five/>
          <Four/>
          <One/>
          <One/>
        </Add>
      </Subtract>
    </Multiply>
  </Add>
))