You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unable to use this module post npm install.. had a look at your example in the repo but its difficult to get it right.
Could you please update the readMe so that anyone installing this module on their project knows how to quickly get this awesome component up and running ?
The text was updated successfully, but these errors were encountered:
Same thing here, I've tried to use this component in React with Meteor and the code does not work. I've changed a bit the code because I'm not using React.createClass({}), I'm using class ComponentName extends Component {}, so instead of using
handleRemove: function(value) {}, I'm using handleRemove(value) {}
I've tried to import TokenInput and ComboboxOption with the following options:
import { TokenInput, ComboboxOption } from 'react-tokeninput';
import TokenInput, { ComboboxOption } from 'react-tokeninput';
import TokenInput from 'react-tokeninput';
import ComboboxOption from 'react-tokeninput';
But I'm always getting warnings and error:
Warning: Failed prop type: The prop onSelect is marked as required in exports, but its value is undefined.
The same warning for a bunch of other event types
Uncaught TypeError: Cannot read property 'map' of undefined
Unable to use this module post npm install.. had a look at your example in the repo but its difficult to get it right.
Could you please update the readMe so that anyone installing this module on their project knows how to quickly get this awesome component up and running ?
The text was updated successfully, but these errors were encountered: