diff --git a/packages/components/src/App.web.tsx b/packages/components/src/App.web.tsx index 9deb752..19d8a75 100644 --- a/packages/components/src/App.web.tsx +++ b/packages/components/src/App.web.tsx @@ -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' @@ -9,18 +10,5 @@ import Reviews from './features/reviews/Reviews' import Review from './features/review/Review' export function App() { - return ( - - - - - - - - - ) + return Main }