이어서 ArticleView 컴포넌트는 다음과 같이 수정하세요.
components/ArticleView.tsx
import React from 'react'; import {View, StyleSheet, Text} from 'react-native'; import ArticleActionButtons from './ArticleActionButtons'; export interface ArticleViewProps { title ; body ; publishedAt ; username ; id: number; isMyArticle: boolean; } function ({ title, body, publishedAt, username, id, isMyArticle, } ArticleViewProps) { ( ) <View style={styles.separator} /> {isMyArticle && <ArticleActionButtons articleId={id} />} <Text>{body}</Text> </View> ); } ( )