Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import React from 'react';
  2.  
  3. const Option = ({onSelect, option}) => {
  4. const onSelectHandler = (e) => {
  5. e.preventDefault();
  6. onSelect(option);
  7. }
  8.  
  9. return (<li onClick={onSelectHandler}>{option.value}</li>);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement