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