PliWould/app/(tabs)/index.tsx

11 lines
251 B
TypeScript
Raw Normal View History

2024-07-01 04:49:41 +02:00
import ProductCalculatorSelector from '@/components/ProductCalculatorSelector';
import { SafeAreaView, Text, View } from 'react-native';
export default function Convert () {
return (
<View>
2024-07-01 04:49:41 +02:00
<ProductCalculatorSelector />
</View>
2024-07-01 04:49:41 +02:00
)
}