react-textselect
v0.2.0
Published
Select dropdown over text in React.
Maintainers
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/dist/textselect.css">Build
If you want to build this from source, you will need babel and less.
npm install -g babel lessAnd run the pre publish script
npm run prepublish