react-native-tabeller/example/src/App.tsx

21 lines
401 B
TypeScript
Raw Normal View History

2025-03-08 19:33:22 +00:00
import { multiply } from 'react-native-tabeller';
import { Text, View, StyleSheet } from 'react-native';
const result = multiply(3, 7);
export default function App() {
return (
<View style={styles.container}>
<Text>Result: {result}</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});