Move main file out of components
This commit is contained in:
parent
ae131a3e27
commit
eccbdf4a79
3 changed files with 5 additions and 5 deletions
|
@ -1,8 +1,8 @@
|
|||
import React from 'react-native';
|
||||
|
||||
import RouteMaster from './routes/RouteMaster';
|
||||
import RouteMapper from './navigation/RouteMapper';
|
||||
import GlobalStyles from '../settings/styles';
|
||||
import RouteMaster from './components/routes/RouteMaster';
|
||||
import RouteMapper from './components/navigation/RouteMapper';
|
||||
import GlobalStyles from './settings/styles';
|
||||
import BusyIndicator from 'react-native-busy-indicator';
|
||||
|
||||
require('moment-duration-format');
|
|
@ -1,5 +1,5 @@
|
|||
import React from 'react-native';
|
||||
import App from './app/components/app.js';
|
||||
import App from './app/index.js';
|
||||
|
||||
const {
|
||||
AppRegistry,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import React from 'react-native';
|
||||
import App from './app/components/app.js';
|
||||
import App from './app/index.js';
|
||||
|
||||
const {
|
||||
AppRegistry,
|
||||
|
|
Reference in a new issue