Added missing prop type

This commit is contained in:
orangemug
2018-09-24 15:13:35 +01:00
parent 004d135d93
commit 4a0b9fd0de

View File

@@ -9,7 +9,8 @@ class Button extends React.Component {
onClick: PropTypes.func,
style: PropTypes.object,
className: PropTypes.string,
children: PropTypes.node
children: PropTypes.node,
disabled: PropTypes.bool,
}
render() {