프로그래밍(Programming)/리액트(React)
[리액트(React) Study Log] [Person App-004] Working with Components & Re-Using Them
SuperKid
2019. 1. 11. 14:22
[리액트(React) Study Log] [Person App-004] Working with Components & Re-Using Them
1. Component 의 재사용
- <Person/> 를 JSX code 내에서 여러번 사용 가능.
// src-App.js
...
return (
<div className="App">
<h1>Hi, I'm React App</h1>
<p>This is really working!</p>
<Person />
<Person />
<Person />
</div>
...
- 브라우져 확인