Fix propTypes of children property

- child can be a single string object, array of arbitrary objects or a single object (e.g., single Button child)
pull/8/head
Vasek Mlejnsky 6 years ago
parent 9f5bb3c1a6
commit f70517457c

@ -62,6 +62,7 @@ const Link = ({
Link.propTypes = {
children: PropTypes.oneOfType([
PropTypes.string,
PropTypes.object,
PropTypes.array,
]).isRequired,
href: PropTypes.string.isRequired,

Loading…
Cancel
Save