//

//
//
// {itemState === STATES.PROGRESS &&
//
//
//
}
// {itemState === STATES.ERROR &&
//
// Failed...
//
}
// {itemState === STATES.CANCELLED &&
//
// Cancelled
//
}
//
;
};
const STATES = {
PROGRESS: "PROGRESS",
DONE: "DONE",
CANCELLED: "CANCELLED",
ERROR: "ERROR"
};