import { multiply } from 'react-native-tabeller'; import { Text, View, StyleSheet } from 'react-native'; const result = multiply(3, 7); export default function App() { return ( Result: {result} ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, });