react-inlinese
v0.9.3
Published
React inline text edit with a separate inline popup box
Downloads
4
Maintainers
Readme
Demo & Documentation
Installation
- npm
npm install --save react-inlinese
- OR yarn
yarn add react-inlinese
Usage
import Inlinese from 'react-inlinese';
// ...
// see documentation for available options
const MyComponent = () => (
<Inlinese
onSubmit={value => alert(value)}
value="Editable text"
>
Editable text
</Inlinese>
);