replace require with import

This commit is contained in:
tina
2018-05-29 13:37:30 +02:00
parent a43a5fd96e
commit 2f443c7743
3 changed files with 1811 additions and 1806 deletions
+5 -2
View File
@@ -1,5 +1,6 @@
const StyleSheet = require('react-native').StyleSheet
module.exports = StyleSheet.create({
import { StyleSheet } from 'react-native'
const ourStyle = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
@@ -11,3 +12,5 @@ module.exports = StyleSheet.create({
margin: 10,
}
})
export { ourStyle }