0.0.1 • Published 2 years ago

react-native-blockchain-business-calculator v0.0.1

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

Simple react native business calculator and calculator input component.

Installation

Using npm:

npm i -S react-native-business-calculator

or yarn:

yarn add react-native-business-calculator

Usage

import React from 'react'
import { View } from 'react-native'
import { BlockchainCalculator } from 'react-native-business-calculator'

export default class App extends React.Component {
  render() {
    return (
      <View style={{ flex: 1 }}>
        <BlockchainCalculator/>
      </View>
    )
  }
}