Skip to content

Commit

Permalink
#1 - Update web
Browse files Browse the repository at this point in the history
  • Loading branch information
L committed Nov 23, 2021
1 parent 3671e78 commit 837fba5
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions packages/components/src/App.web.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react'

import { Provider } from 'react-redux'
import { Text } from 'react-native'

import { store } from './store'
import { RootStackParamList } from './navigation/navigation'
Expand All @@ -9,18 +10,5 @@ import Reviews from './features/reviews/Reviews'
import Review from './features/review/Review'

export function App() {
return (
<Provider store={store}>
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name="Main"
component={Tabs}
options={{ headerShown: false }}
/>
<Stack.Screen name="Review" component={Review} />
</Stack.Navigator>
</NavigationContainer>
</Provider>
)
return <Text>Main</Text>
}

0 comments on commit 837fba5

Please sign in to comment.