dealing-with-react-native
dealing-with-react-native copied to clipboard
9.4.1 PostCard 컴포넌트 만들기 오타
components/PostCard.js
return (
<View style={styles.block}>
<View style={[styles.head, styles.paddingBlock]}>
<Pressable style={styles.profile} onPress={onOpenProfile}>
source={
user.photoURL
? {
uri: user.photoURL,
}
: require("../assets/user.png")
}
resizeMode="cover"
style={styles.avatar}
/>
...
</Pressable>
</View>
...
책에는 <Avatar> 컴포넌트가 없습니다.
확인 부탁드립니다 :)
p516