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 React from 'react-native';
|
||||||
|
|
||||||
import RouteMaster from './routes/RouteMaster';
|
import RouteMaster from './components/routes/RouteMaster';
|
||||||
import RouteMapper from './navigation/RouteMapper';
|
import RouteMapper from './components/navigation/RouteMapper';
|
||||||
import GlobalStyles from '../settings/styles';
|
import GlobalStyles from './settings/styles';
|
||||||
import BusyIndicator from 'react-native-busy-indicator';
|
import BusyIndicator from 'react-native-busy-indicator';
|
||||||
|
|
||||||
require('moment-duration-format');
|
require('moment-duration-format');
|
|
@ -1,5 +1,5 @@
|
||||||
import React from 'react-native';
|
import React from 'react-native';
|
||||||
import App from './app/components/app.js';
|
import App from './app/index.js';
|
||||||
|
|
||||||
const {
|
const {
|
||||||
AppRegistry,
|
AppRegistry,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import React from 'react-native';
|
import React from 'react-native';
|
||||||
import App from './app/components/app.js';
|
import App from './app/index.js';
|
||||||
|
|
||||||
const {
|
const {
|
||||||
AppRegistry,
|
AppRegistry,
|
||||||
|
|
Reference in a new issue