UploadPhoto.js 584 Bytes
import React from 'react';
import {View, Text, Image, Button, StyleSheet} from 'react-native';
import styled from "styled-components";

const UploadPhoto = (props) => {
    const {route} = props;
    const {photos} = route.params;


    return (
        <View>
            <Text>
                하이하이
            </Text>
            <View>{photos.map((photo, index) => {
                return (
                    <Image style={{width: 200, height: 200}} source={{uri: photo.uri}} key={photo.id}/>)
            })}</View>

        </View>
    )
}
export default UploadPhoto;