Files
drip/app.js
T
2018-06-14 14:59:43 +02:00

16 lines
524 B
JavaScript

import { createStackNavigator } from 'react-navigation'
import Home from './home'
import Calendar from './calendar'
import CycleDay from './cycle-day'
// this is until react native fixes this bug, see https://github.com/facebook/react-native/issues/18868#issuecomment-382671739
import { YellowBox } from 'react-native'
YellowBox.ignoreWarnings(['Warning: isMounted(...) is deprecated'])
export default createStackNavigator({
home: { screen: Home },
calendar: { screen: Calendar },
cycleDay: { screen: CycleDay }
})