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