Skip to content

함수형 컴포넌트

EunwooPark edited this page Mar 4, 2020 · 7 revisions

React에서 컴포넌트를 만드는 가장 기본적인 방법이다.

function Hello(){
    return <h1>hello world!</h1>;
}

ReactDOM.render(<Hello />, document.getElementById('root'));

하지만 hooks가 도입 되기 전에는 state와 라이프 사이클을 사용하기 위해 클래스 컴포넌트를 이용했다.

class Hello extends React.Components {
    render(){
        return <h1>hello world!</h1>;
    }
}
Clone this wiki locally