11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
import ProductCalculatorSelector from '@/components/ProductCalculatorSelector';
|
|
import { SafeAreaView, Text, View } from 'react-native';
|
|
|
|
export default function Convert () {
|
|
return (
|
|
<View>
|
|
<ProductCalculatorSelector />
|
|
</View>
|
|
)
|
|
}
|