0.9.3 • Published 7 years ago

react-inlinese v0.9.3

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

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