import React from 'react';import { Platform, StyleSheet, Text, ScrollView } from 'react-native';const App = () => { return ( OS {Platform.OS} OS Version {Platform.Version} isTV {Platform.isTV.toString()} {Platform.OS === 'ios' && <> isPad {Platform.isPad.toString()} } Constants {JSON.stringify(Platform.constants, null, 2)} );};const styles = StyleSheet.create({ container: {flex: 1, justifyContent: 'center', alignItems: 'center'}, value: { fontWeight: '600', padding: 4,marginBottom: 8}});export default App;