import React from 'react'; import { View, StyleSheet } from 'react-native'; import { Omni } from 'react-native-omni'; function App(): React.JSX.Element { return ( ); } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', }, view: { width: 200, height: 200 }}); export default App;