1.0.9 • Published 3 years ago

react-input-number-clf v1.0.9

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

react-input-number-clf

Made with create-react-library

NPM JavaScript Style Guide

Install

npm install --save react-input-number-clf

Usage

import React, { useState } from 'react'
import { InputNumber } from 'react-input-number-clf'
function Example(){
  const [value, setValue] = useState(0)
  const onChange = (e) => {
      console.log(e)
      setValue(e)
  }
  return (
      <InputNumber
          values={value}
          label={'number'}
          background={'#f1f1f1'}
          onChange={(e) => onChange(e)}
    />
  )
}

License

MIT ©

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago