Files
drip/index.js
T
2018-05-31 21:38:39 +02:00

9 lines
217 B
JavaScript

import { AppRegistry } from 'react-native'
import Home from './app'
import { openDatabase } from './db'
// TODO error handling
openDatabase()
.then(() => {
AppRegistry.registerComponent('home', () => Home)
})