Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-inlinese

ttrinh11MIT0.9.3

React inline text edit with a separate inline popup box

react, reactjs, inline, edit, text, editable, editing, popup

readme

Build Status

Demo & Documentation

https://ttrinh.github.io/react-inlinese

alt text

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>
);