Guest User

Untitled

a guest
Jan 17th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <select
  2. value={this.state.value}
  3. onChange={this.dataSchemaChange}
  4. >
  5. <option value="">Choose DataSchema ...</option>
  6. {dataSchemas &&
  7. dataSchemas.length > 0 &&
  8. dataSchemas.map(dataSchema => {
  9. return (
  10. <option value={dataSchema.name}>
  11. {dataSchema.name}
  12. </option>
  13. );
  14. })}
  15. </select>
Add Comment
Please, Sign In to add comment