React X editable using react-bootstrap.
npm install react-x-editable-fix !License

inline and popup text edit mode (Form/Popover).
Text, Textarea, Select,Checklist (check box list)
Customizable inputs where user can create own user defined inputs easily.
sh
npm install react-x-editable
Or
git clone https://github.com/ni3galave/react-x-editable.git
cd react-x-editable/
npm install
npm start
`
Then open http://localhost:8080/ to see demo examples.
Live Demo | Documentation
Quick Usage :
Simple Text field example with popover edit mode.
`sh
import Editable from 'react-x-editable';
..
...
render(){
return (
name="username"
dataType="text"
mode="popup"
title="Please enter username"
/>
);
}
....
...
``