Babel의 마법
Before (JSX)
<h1>Hello</h1>
Babel 변환
After (JavaScript)
React.createElement('h1', null, 'Hello')
4