I'm using an array instead of an object, works fine but had an issue poping because of the PropTypes. Changed SortableList.js with : ``` data: PropTypes.oneOfType([ PropTypes.object.isRequired, PropTypes.array.isRequired ]) ``` Works fine ;)