Package Exports
- react-textselect
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-textselect) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Text Select
Simple component to put an invisible Select dropdown over a text.

Installation
npm install react-textselect --saveUsage.
var TextSelect = require('react-textselect');
<TextSelect
options={['text select', 'react component', 'dropdown']}
active={this.state.selectedOption}
onChange={this.onTextSelectChange}/>Add styles.
Dont forget to add styles.
<link rel="stylesheet" href="/node_modules/react-textselect/textselect.css">