chore: initial commit
This commit is contained in:
20
example/src/App.tsx
Normal file
20
example/src/App.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import { Text, View, StyleSheet } from 'react-native';
|
||||
import { multiply } from 'react-native-bpl-scale';
|
||||
|
||||
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',
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user