Skip to content

Commit

Permalink
feat: setup project architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
hopetambala committed Jun 20, 2020
1 parent 3cef1ca commit 2c61b77
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion App.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
Platform, StatusBar, StyleSheet, View
} from 'react-native';

import useCachedResources from './hooks/useCachedResources';
import useCachedResources from './modules/cached-resources/useCachedResources';
import BottomTabNavigator from './navigation/BottomTabNavigator';
import LinkingConfiguration from './navigation/LinkingConfiguration';

Expand Down
Empty file added modules/auth/index.js
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function useCachedResources() {
// Load fonts
await Font.loadAsync({
...Ionicons.font,
'space-mono': require('../assets/fonts/SpaceMono-Regular.ttf'),
'space-mono': require('../../assets/fonts/SpaceMono-Regular.ttf'),
});
} catch (e) {
// We might want to provide this error information to an error reporting service
Expand Down
Empty file added modules/utils/index.js
Empty file.
Empty file added services/parse/crud/index.js
Empty file.
Empty file added services/parse/index.js
Empty file.

0 comments on commit 2c61b77

Please sign in to comment.