더북(TheBook)

컴포넌트를 다 만들었으면 ArticleScreen을 열어서 기존의 ListHeaderComponent<></>로 감싼 뒤, ArticleView 하단에 방금 만든 CommentInput 컴포넌트를 보여주세요.

screens/ArticleScreen.tsx

(...)
import CommentInput from '../components/CommentInput';

function ArticleScreen() {
  (...)
  return (
    <FlatList
      (...)
      ListHeaderComponent={
        <>
          <ArticleView
            title={title}
            body={body}
            publishedAt={published_at}
            username={user.username}
            id={id}
            isMyArticle={isMyArticle}
          />
          <CommentInput articleId={id} />
         </>
       }
    />
  );
}

(...)
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.