1import { StyleSheet, Image } from 'react-native';
2
3export default function ImageViewer({ placeholderImageSource, selectedImage }) {
4  const imageSource = selectedImage ? { uri: selectedImage } : placeholderImageSource;
5
6  return <Image source={imageSource} style={styles.image} />;
7}
8
9const styles = StyleSheet.create({
10  image: {
11    width: 320,
12    height: 440,
13    borderRadius: 18,
14  },
15});
16