21 lines
401 B
TypeScript
21 lines
401 B
TypeScript
|
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',
|
||
|
},
|
||
|
});
|