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