9. 동적 값 출력 및 활용

  • 프로젝트 링크open in new window

  • 동적 값 출력 및 활용

    const reactDescriptions = ['Fundamental', 'Crucial', 'Core'];
    
    function Header() {
      const description = reactDescriptions[genRandomInt(reactDescriptions.length - 1)]
      return (
        <header>
          <img src="src/assets/react-core-concepts.png" alt="React logo" />
          <h1>React Essentials</h1>
          <p>
            {description}
          </p>
        </header>
      );
    }
    
    function App() {
      return (
        <Header/>
      )
    }
    
    export default App;