Created
October 6, 2016 18:57
-
-
Save ionox0/8cbe7eecb665626a077e9daadd26a5c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const defaults = { | |
tags: [{ id: 1, text: "Apple" }], | |
suggestions: ["Banana", "Apple", "Apricot", "Pear", "Peach"], | |
handleAddition: noop, | |
handleDelete: noop, | |
handleDrag: noop | |
} | |
const DOWN_ARROW_KEY_CODE = 40; | |
function mockItem(overrides) { | |
const props = Object.assign({}, defaults, overrides); | |
return <ReactTags {...props} /> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment