Init using create-nitro-module

This commit is contained in:
2026-04-06 12:53:56 +02:00
commit b5a15a41e9
97 changed files with 6648 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import React from 'react';
import { View, StyleSheet } from 'react-native';
import { Omni } from 'react-native-omni';
function App(): React.JSX.Element {
return (
<View style={styles.container}>
<Omni isRed={true} style={styles.view} testID="omni" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
view: {
width: 200,
height: 200
}});
export default App;