Browse Source

remove usage of ViewPropTypes (#500)

master
Henning Hall 3 years ago
committed by GitHub
parent
commit
54b01b7279
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/propTypes.js

+ 3
- 3
src/propTypes.js View File

@ -1,4 +1,4 @@
import { Platform, ViewPropTypes } from 'react-native'
import { Platform } from 'react-native'
import PropTypes from 'prop-types'
const androidPropTypes = {
@ -35,7 +35,7 @@ export default {
locale: PropTypes.string,
textColor: PropTypes.string,
timeZoneOffsetInMinutes: PropTypes.number,
testID: ViewPropTypes.testID,
style: ViewPropTypes.style,
testID: PropTypes.string,
style: PropTypes.any,
...modalPropTypes,
}

Loading…
Cancel
Save