Can you explain this code? Is it currying?
export const thing = (...items) => (wotsit) => {
const thing = (props, {enums}) => {
// ...
};
thing.contextTypes = {
enums: PropTypes.object
};
return thing;
};
export default thing;