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'));