[95일차]20210726 react Link, head, title, css, 라우터, 폰트, 이미지 넣기, 핸드폰과 연동하기
프론트에 next 를 설치하기 1. blog > back, front 폴더 생성 2. 터미널 front까지 접근 3. npm init / 설치 npm init npm install next react react-dom 3. package.json 수정 { "name": "front", "version": "1.0.0", "description": "", "main": "server.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "dev":"next dev -p 3001 -H 0.0.0.0", "build":"next build", "start":"next start", "lint":"next lint" }, "author..
[88일차 복습] 리액트 댓글 수정 삭제
오늘 배운 내용 : 삭제, 수정, express server와 연결하기 삭제 0. CommentList.jsx key값 index라는 변수로 보내기 (key는 리액트 예약어라 props XXX!!) 1. CommentItem.jsx 1) Context 가져오기, 2) X 버튼 추가 -> onClick 함수 -> dispatch 실행 import React, {useContext, useState} from 'react' import Context from './store/context' const CommentItem =({key, userid, content, date, index})=>{ let {state,dispatch} = useContext(Context) let [input,setInput]..