[React] React로 button이벤트 구현하기 (버튼 클릭 시 글자 변경하는 법)
·
지난 글 모음
React로 button 이벤트 구현하는 법을 알아보자 1. 준비과정 1. create-react-app 로 프로젝트를 만든다. 2. npm start로 실행 3. App.js를 아래 코드로 작성 import React from "react"; import logo from "./logo.svg"; import "./App.css"; import Example from "./Example"; function App() { return ( ); } export default App; 4. Example.js 파일을 만들고 아래 코드로 작성 import React from "react"; export default class Eaxmple extends React.Component { render() { r..