Skip to content

Commit

Permalink
Updated React to 15.6.1 and added PropTypes Dependency (#387)
Browse files Browse the repository at this point in the history
* Added PropTypes Dep and Updated Usage

* Updated React Dep
  • Loading branch information
garylesueur authored and gcanti committed Sep 22, 2017
1 parent bca64c7 commit 3d43139
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lib/templates/bootstrap/datepicker.ios.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import { Animated, View, TouchableOpacity, Text, DatePickerIOS } from 'react-native';

const UIPICKER_HEIGHT = 216;
Expand Down
3 changes: 2 additions & 1 deletion lib/templates/bootstrap/select.ios.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { PropTypes } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import { Animated, View, TouchableOpacity, Text, Picker } from 'react-native';

const UIPICKER_HEIGHT = 216;
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"babel-core": "5.8.34",
"eslint": "0.23.0",
"eslint-plugin-react": "2.5.2",
"react": "^15.0.0",
"react": "^15.6.1",
"prop-types": "^15.5.10",
"tape": "3.5.0"
},
"tags": [
Expand Down

0 comments on commit 3d43139

Please sign in to comment.