🌐 React로 만드는 Tic Tac Toe React 공식 홈페이지의 튜토리얼에 따라서 코딩을 해봄으로써 기본적인 CRUD 기능 구현을 익힘 https://ko.reactjs.org/tutorial/tutorial.html 자습서: React 시작하기 – React A JavaScript library for building user interfaces ko.reactjs.org 1. 기본구조 초기코드는 공식문서에서 제공 index.js는 3개의 클래스로 구성 Square Board Game 2. Props를 통해 데이터 전달하기 부모 Board 컴포넌트에서 자식 Square 컴포넌트로 "prop" 전달. Board class Board extends React.Component { renderSqua..