Skip to content

Commit

Permalink
πŸŽ‰ feat: catchpill ν”„λ‘œμ νŠΈ μ‹œμž‘ #1
Browse files Browse the repository at this point in the history
catchpill ν”„λ‘œμ νŠΈλ₯Ό μ‹œμž‘ν•©λ‹ˆλ‹€! ν™”μ΄νŒ…!
  • Loading branch information
dypark26 committed Jan 6, 2023
1 parent a842695 commit 4970a7d
Show file tree
Hide file tree
Showing 26 changed files with 1,663 additions and 20 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,11 @@ npm-debug.*
*.orig.*
web-build/

// 배포전에 μ˜¬λ¦½μ‹œλ‹€.
app.json

// git에 μ˜¬λ¦¬μ§€ μ•Šκ³  Slack으둜 κ³΅μœ ν•©λ‹ˆλ‹€.
src/shared/config.js

# macOS
.DS_Store
11 changes: 7 additions & 4 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import { QueryClientProvider, QueryClient } from 'react-query';

const queryClient = new QueryClient();

export default function App() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<StatusBar style="auto" />
</View>
<QueryClientProvider client={queryClient}>
{/* <Router>
</Router> */}
</QueryClientProvider>
);
}

Expand Down
Loading

0 comments on commit 4970a7d

Please sign in to comment.