inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

tlsehdrl4340님의 게시글

tlsehdrl4340 tlsehdrl4340

@ashton

수강평 작성수
-
평균평점
-

게시글 2

질문&답변

실행 시켜도 변화가 없어요

저도 같은 현상으로 기본 화면만 출력되고 있습니다만, 원인을 모르겠어서 질문 남겨봅니다. import React from "react"; function Book(props){ return ( {'이 책의 이르은 ${props.name}입니다.'} {'이 책은 총 ${props.numOfPage}페이지로 이뤄져 있습니다.'} ); } export default Book; import React from "react"; import book from "./Book"; function Library(props) { return( ); } export default Library; import App from './App'; import reportWebVitals from './reportWebVitals'; import Libray from './chapter_03/Libray'; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( , document.getElementById('root') ); // If you want to start measuring performance in your app, pass a function // to log results (for example: reportWebVitals(console.log)) // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals reportWebVitals();

좋아요수
1
댓글수
9
조회수
902