react-native-vision-camera/example/src/App.tsx

27 lines
448 B
TypeScript
Raw Normal View History

2021-02-19 08:07:53 -07:00
import * as React from 'react';
import { StyleSheet, View, Text } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
2021-02-19 08:44:00 -07:00
<Text>Hello World!</Text>
2021-02-19 08:07:53 -07:00
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
2021-02-19 10:02:24 -07:00
backgroundColor: 'white',
2021-02-19 08:07:53 -07:00
},
box: {
width: 60,
height: 60,
marginVertical: 20,
},
});