Made with create-react-library
npm install --save react-input-fields-box
npm start
node = 16
import React from 'react'
import MyComponent from 'react-input-fields-box'
import 'react-input-fields-box/dist/index.css'
const MyComponent = () => {
const [value, setValue] = React.useState('')
const onChange = (e) => {
setValue(e.target.value)
}
return <ExampleComponent onChange={onChange} value={value} />
}
export default MyComponent
MIT © sagar-vaghela