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