import React from "react"; import { StyleSheet, Text, View } from "react-native"; 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! ); } let AppEntryPoint = App; if (process.env.STORYBOOK_ENABLED) { AppEntryPoint = require("./.rnstorybook").default; } export default AppEntryPoint;