mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
22 lines
471 B
TypeScript
22 lines
471 B
TypeScript
import { StatusBar } from 'expo-status-bar';
|
|
import React from 'react';
|
|
import { StyleSheet, Text, View } from 'react-native';
|
|
|
|
export default function App() {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text>Welcome to the Bolt Expo template!</Text>
|
|
<StatusBar style="auto" />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#fff',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
});
|