[리액트(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>

...

 

 

 - 브라우져 확인


+ Recent posts