Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <select value={this.state.selectedSavedKey} onChange={this.onSelectSaved}>
  2. <option value={''}></option>
  3. {this.props.allOptions.savedOptions.map((options) => {
  4. return <option key={options.name} value={options.name}>{options.name}</option>
  5. })}
  6. </select>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement