replace require with import
This commit is contained in:
@@ -6,9 +6,10 @@ import {
|
||||
TextInput,
|
||||
FlatList
|
||||
} from 'react-native'
|
||||
console.log('first hi')
|
||||
import * as styles from './styles'
|
||||
import Datastore from 'react-native-local-mongodb'
|
||||
|
||||
const styles = require('./styles')
|
||||
const Datastore = require('react-native-local-mongodb')
|
||||
const db = new Datastore({ filename: 'asyncStorageKey', autoload: true })
|
||||
|
||||
export default class drip extends Component {
|
||||
@@ -17,6 +18,7 @@ export default class drip extends Component {
|
||||
this.state = {
|
||||
temperatures: []
|
||||
}
|
||||
console.log('hello')
|
||||
db.find({ key: { $exists: true } }, (err, persistedTemperatures) => {
|
||||
if (err) throw err
|
||||
this.setState({
|
||||
|
||||
Generated
+1802
-1802
File diff suppressed because it is too large
Load Diff
@@ -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 }
|
||||
|
||||
Reference in New Issue
Block a user