Skip to content

Commit

Permalink
Replace View.propTypes.style with ViewPropTypes.style.
Browse files Browse the repository at this point in the history
As per facebook/react-native#16542.

Fixes #770.
  • Loading branch information
joshuapinter committed Jun 22, 2018
1 parent fdd91f9 commit 0c7e24f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SortableList.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export default class SortableList extends Component {
static propTypes = {
data: PropTypes.object.isRequired,
order: PropTypes.arrayOf(PropTypes.any),
style: View.propTypes.style,
contentContainerStyle: View.propTypes.style,
style: ViewPropTypes.style,
contentContainerStyle: ViewPropTypes.style,
sortingEnabled: PropTypes.bool,
scrollEnabled: PropTypes.bool,

Expand Down

0 comments on commit 0c7e24f

Please sign in to comment.