🎈 State 🎈 📌 State는 데이터가 오는 곳이다. 📌 State는 가능한 간단하게 그리고 stateful component의 숫자를 최소화해야 한다. App.jsx import React from 'react'; class App extends React.Component { constructor(props) { super(props); this.state = { header: "Header from state...", content: "Content from state..." } } render() { return ( {this.state.header} {this.state.content} ); } } export default App; main.js import React from 'react..