Moved reduxNavigation and routes to navigation folder

This commit is contained in:
Mustafa Buyukcelebi 2018-12-21 11:13:02 +03:00
parent e6027d798c
commit b812573a30
4 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ import {
createSwitchNavigator,
createStackNavigator,
} from 'react-navigation';
import { BaseNavigator } from '../navigation';
import { BaseNavigator } from './baseNavigator';
import { default as ROUTES } from '../constants/routeNames';
// Screens

View File

@ -1,4 +1,4 @@
import Navigator from '../../config/routes';
import Navigator from '../../navigation/routes';
export default (state, action) => {
const newState = Navigator.router.getStateForAction(action, state);

View File

@ -2,7 +2,7 @@ import React, { Component, Fragment } from 'react';
import { IntlProvider } from 'react-intl';
import { StatusBar, Platform } from 'react-native';
import EStyleSheet from 'react-native-extended-stylesheet';
import { ReduxNavigation } from '../../../config/reduxNavigation';
import { ReduxNavigation } from '../../../navigation/reduxNavigation';
import { flattenMessages } from '../../../utils/flattenMessages';
import messages from '../../../config/locales';