24 lines
493 B
TypeScript
24 lines
493 B
TypeScript
import { StatusBar } from 'expo-status-bar';
|
|
import { StyleSheet, Text, View } from 'react-native';
|
|
|
|
export default function Index() {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text style={styles.title}>Dot.</Text>
|
|
<StatusBar style="auto" />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#fff',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
title: {
|
|
fontSize: 32,
|
|
fontWeight: '600',
|
|
},
|
|
}); |