如何将图像置于Bootstrap 4卡中心?它是一个垂直图像,左对齐看起来不对。我一直在阅读Bootstrap Card文档,但无法找到有关图像居中的任何信息。
case DELETE_COMMENTS:
const newCommentArray = _.reject(action.post.comments, {'_id': action.payload});
const newState = {
...state,
[action.post.id] : {
...action.post,
comments : newCommentArray
}
};
return newState;