Skip to content

Instantly share code, notes, and snippets.

@ionox0
Created October 6, 2016 18:57
Show Gist options
  • Save ionox0/8cbe7eecb665626a077e9daadd26a5c1 to your computer and use it in GitHub Desktop.
Save ionox0/8cbe7eecb665626a077e9daadd26a5c1 to your computer and use it in GitHub Desktop.
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