Skip to content

Commit

Permalink
Merge pull request #9 from gloddy-dev/feature/8-routing
Browse files Browse the repository at this point in the history
Feature/8 routing
  • Loading branch information
guesung authored Nov 3, 2023
2 parents 3d18967 + cf5a6f9 commit b5b0300
Show file tree
Hide file tree
Showing 23 changed files with 1,639 additions and 3,726 deletions.
10 changes: 10 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
module.exports = {
root: true,
extends: '@react-native',
rules: {
'react/react-in-jsx-scope': 'off',
'react-native/no-inline-styles': 0,
'prettier/prettier': [
'error',
{
'no-inline-styles': false,
},
],
},
};
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"java.configuration.updateBuildConfiguration": "automatic"
"java.configuration.updateBuildConfiguration": "automatic",
"java.compile.nullAnalysis.mode": "automatic",
"typescript.tsdk": "node_modules/typescript/lib"
}
339 changes: 0 additions & 339 deletions App.js

This file was deleted.

20 changes: 20 additions & 0 deletions App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import MainNavigator from './src/components/MainNavigator';
import React from 'react';
import {StatusBar, View} from 'react-native';

export default function App() {
return (
<>
<StatusBar
animated={false}
backgroundColor="white"
translucent={false}
hidden={false}
barStyle="dark-content"
/>
<View style={{flex: 1, backgroundColor: 'white'}}>
<MainNavigator />
</View>
</>
);
}
Loading

0 comments on commit b5b0300

Please sign in to comment.