Guest User

Untitled

a guest
Jan 16th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <div className="row">
  2. <div className="col-md-12">
  3. <form className="form-inline">
  4. <div className="form-group col-md-4">
  5. <lable>Select Technolgoy </lable>
  6. <Select
  7. value={selectedOption}
  8. onChange={this.handleChange}
  9. options={options}
  10. />
  11. </div>
  12. <div className="form-group col-md-4">
  13. <lable>Select Component </lable>
  14. <Select
  15. value={selectedOption}
  16. onChange={this.handleChange}
  17. options={options}
  18. />
  19. </div>
  20. <div className="form-group col-md-4">
  21. <lable>Select Job </lable>
  22. <button className="btn btn-primary">
  23. Add
  24. </button>
  25. <button className="btn btn-primary">
  26. Remove
  27. </button>
  28. </div>
  29. </form>
  30. </div>
  31. </div>
Add Comment
Please, Sign In to add comment