mirror of
https://github.com/zoriya/react-native-web.git
synced 2026-06-12 22:14:20 +00:00
9a8a9ad209
The use of CommonJS require in RN modules makes it simpler to use CommonJS exports everywhere.
11 lines
179 B
JavaScript
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
|