JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 23
  • Score
    100M100P100Q55302F
  • License MIT

A simple editable plugin with simple validations

Package Exports

  • react-bootstrap-simple-editable

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-bootstrap-simple-editable) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-bootstrap-simple-editable

A simple editable plugin with simple validations

NPM JavaScript Style Guide

Install

npm install --save react-bootstrap-simple-editable

Usage

import React, { Component } from 'react'
import SimpleEditable from 'react-bootstrap-simple-editable'
import 'react-bootstrap-simple-editable/dist/index.css'

class Example extends Component {
  render() {
    return (
      <SimpleEditable
        type="text"
        name="myInput"
        value={myInput}
        onSave={(value) => {
          setInputValue(value);
        }}
      />
    );
  }
}

Project has just started...

Going to add support to more stuff later...

License

MIT © 8geonirt