1const App = () => {
2const [students , setStudents] = useState([]);
3
4 return (
5// put in the jsx code here
6 )
7}
1<View style={styles.container}>
2 <Text>{outputText}</Text>
3 <Button title="Change text" onPress={() => setoutputText('Open up App.js to start working on your app!')}></Button>
4 {/* <StatusBar style="auto" /> */}
5 </View>