App.js์์ Wrapper ๋ผ๋ ์ปดํฌ๋ํธ๋ฅผ ์ฐ๋ค๊ฐ,Wrapper์์ ์๋ก์ด ์์๋ฅผ ์ถ๊ฐํด์ผ ํ๋ ์ํฉ์ด๋ผ๋ฉด,(์๋ ์ปดํฌ๋ํธ ์์ ํ๊ทธ๋ฅผ ์ถ๊ฐ ํ ์์์ใ ) ๊ธฐ์กด Wrapper.jsx์์ ์ฝ๋(div,p ๋ฑ๋ฑ) ๋ฅผ ์ถ๊ฐํด์ผ ํ์ง๋ง,Wrapper.jsx์ children ์์๋ฅผ ์ถ๊ฐํจ์ผ๋ก์จhtml ์ฒ๋ผ App.js์ ์์์์๋ฅผ ๊ทธ๋๋ก ๋ฃ์ ์ ์๊ฒ ๋จ | Wrapper.jsx ์ฝ๋import React from "react";function Wrapper({ children }) { return( {children} );}export default Wrapper; Wrapper ์ ์์์์๋ก ๋ค์ด๊ฐ children ์ ์ง์ ํด์ฃผ๊ณ ,App.js์์ html ์์ div,p๋ฑ๋ฑ์ ์ ๋ ฅํ๋ฏ ์์ฑํจ ..