🎈 JSX 🎈 import React from 'react'; class App extends React.Component { render() { return ( Hello World!!! ); } } export default App; 🔧 JSX는 Html과 비슷하게 생겼지만 JSX를 작업할 때 몇가지 주의해야 할 것들이 있다. : Nested Elements, Attributes, JavaScript Expressions, Styling, Comments, Naming Convention 📌 Nested Elements import React from 'react'; class App extends React.Component { render() { return ( Header ..