Guest User

Untitled

a guest
Jan 20th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. const Selector = ({ folders }) => (
  2. <form>
  3. <label for="example">Select folder</label>
  4. <select class="form-control" id="example">
  5. <TreeComponent folders={folders}>
  6. {({ folder: { id, name } }) => (<option key={id}>{name}</option>)}
  7. </TreeComponent>
  8. </select>
  9. </form>
  10. )
Add Comment
Please, Sign In to add comment