26 lines
447 B
TypeScript
26 lines
447 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
import { StyleSheet, View, Text } from 'react-native';
|
||
|
|
||
|
export default function App() {
|
||
|
return (
|
||
|
<View style={styles.container}>
|
||
|
<Text>powered by Cuvent</Text>
|
||
|
</View>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const styles = StyleSheet.create({
|
||
|
container: {
|
||
|
flex: 1,
|
||
|
alignItems: 'center',
|
||
|
justifyContent: 'center',
|
||
|
backgroundColor: 'white',
|
||
|
},
|
||
|
box: {
|
||
|
width: 60,
|
||
|
height: 60,
|
||
|
marginVertical: 20,
|
||
|
},
|
||
|
});
|