fix NotificationGroup.propTypes

pull/177/head
Szymon Lesisz 6 years ago committed by Szymon Lesisz
parent 60b0e35b2c
commit f5bf14b776

@ -118,8 +118,14 @@ Group.propTypes = {
PropTypes.shape({
key: PropTypes.object,
type: PropTypes.string,
title: PropTypes.string,
message: PropTypes.string,
title: PropTypes.oneOfType([
PropTypes.string,
PropTypes.node,
]),
message: PropTypes.oneOfType([
PropTypes.string,
PropTypes.node,
]),
}),
),
};

Loading…
Cancel
Save