더북(TheBook)

6.2.2 App 컴포넌트에서 예제 컴포넌트 렌더링

App 컴포넌트에서 기존 코드를 지우고, IterationSample 컴포넌트를 불러와 렌더링하세요.

App.js

import React, { Component } from 'react';
import IterationSample from './IterationSample';
 
class App extends Component {
  render() {
    return (
      <IterationSample/>
    );
  }
}
 
export default App;