From a3c5400c71fbf8c4c323831955635914ff3ec1c8 Mon Sep 17 00:00:00 2001 From: AlexKVal Date: Sat, 11 Jul 2015 11:16:40 +0300 Subject: [PATCH] [fixed] Add missed 'type' property React.PropTypes. checking --- src/Input.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Input.js b/src/Input.js index fa516a4ee4..85b3a59a03 100644 --- a/src/Input.js +++ b/src/Input.js @@ -18,4 +18,8 @@ class Input extends InputBase { } } +Input.propTypes = { + type: React.PropTypes.string +}; + export default Input;