Hello, World!
) export default MyComponent 1 3 1 3Hello, World!
' } Reactの怖さ(Vanilla JSとの⼤きな違い)= JSX 1 4 1 4Hello, World!
) ↓ import {jsx as _jsx} from 'react/jsx-runtime'; const MyComponent = () => ( _jsx('p', { children: 'Hello World!' }) ) ※React 17〜 FYI: https://ja.reactjs.org/blog/2020/09/22/introducing-the-new- jsx-transform.html ※16以前は React.createElement() が呼ばれてました 1 6 1 6Hello, World!
) 1 9 1 9Hello, world!