1.0.2 • Published 4 years ago

react-mac-calculator-extra v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

NPM JavaScript Style Guide license

Live Demo

Click here

Overview

This is a reusable macOs like calculator component, nothing more nothing less

Usage

First install into your App

with npm:

npm i -S react-mac-calculator

with yarn:

yarn add react-mac-calculator

Then import and use it in your App

import React from 'react'
import { Calculator } from 'react-mac-calculator'

const App = props => (
  <div className="app">
    <Calculator />
  </div>
)

export default App