Files
react-native-web/src/components/Image/ImageResizeMode.js
T
Nicolas Gallagher 9a8a9ad209 Use 'module.exports' over 'export default'
The use of CommonJS require in RN modules makes it simpler to use
CommonJS exports everywhere.
2016-03-14 23:21:12 -07:00

11 lines
179 B
JavaScript

import keyMirror from 'fbjs/lib/keyMirror'
const ImageResizeMode = keyMirror({
contain: null,
cover: null,
none: null,
stretch: null
})
module.exports = ImageResizeMode