import { StatusBar } from "expo-status-bar"; import { StyleSheet, Text, View } from "react-native"; import { Provider } from "react-redux"; import Counter from "./component/counter"; import store from "./store"; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "#fff", alignItems: "center", justifyContent: "center", }, }); function App() { return ( Open up App.tsx to start working on your app! ); } export default function Root() { return ( ); }