react-arithmetic

0.0.1 • Public • Published

react-arithmetic

A horrible substitute for actual math by (ab)using React instead

Usage

There are two operations you can perform out of the box Add and Multiply. You can then use these on a Number to render an arithmetic operation

So you if you wanted to represent 2 * 2 * (1 + 2 + 2), you can do it as follows

import React, { Component } from 'react';
import { Number, Add, Multiply } from 'react-arithmetic';
 
class Mathemagic extends Component {
  render() {
    return (
      <Multiply>
        <Number value={ 2 } />
        <Number value={ 2 } />
        <Add>
          <Number value={ 1 } />
          <Number value={ 2 } />
          <Number value={ 2 } />
        </Add>
      </Multiply>
    );
  }
}

This will resolve 20

Tests Build Status

npm test

Readme

Keywords

Package Sidebar

Install

npm i react-arithmetic

Weekly Downloads

1

Version

0.0.1

License

MIT

Unpacked Size

22.5 kB

Total Files

17

Last publish

Collaborators

  • sivanmehta