We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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>; } }