Explore Library
Code QuizAdvanced

Expo App Entry Component Bug

Spot why this basic Expo managed-workflow screen fails to render.

Codejavascript
import { Text, View } from 'react-native';

function App() {
  return (
    <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
      <Text>Hello Expo!</Text>
    </View>
  );
}

This is App.js in an Expo managed project, but nothing renders. What is the bug?