React&React-Native/React (34) 썸네일형 리스트형 [#React] React 프로젝트에 Redux 사용하기(초기 설정) Redux를 사용할 거기 때문에 세팅해 보겠습니다 npm install redux npm install react-redux npm install redux-actions 폴더, 파일 생성해 주세요 src ㄴstore ㄴmodules ㄴindex.js ㄴtest.js ① src/store/modules/test.js import { createAction, handleActions } from "redux-actions"; import produce from "immer"; const TEST = "TEST"; export const setPing = createAction(TEST); const initialState = { val: "complete" }; export default handleAct.. [#React] npx를 이용해서 React 프로젝트 시작하기 React를 시작하기 전에 Node가 설치되어 있어야 합니다 https://developer0809.tistory.com/15?category=895003 [#Node] Window에서 Node 설치 및 환경 변수 설정하기 React, React-native 프로젝트를 시작하기 위해서 node를 먼저 설치해야 합니다 먼저 다운로드 하겠습니다 nodejs.org/en Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. no.. developer0809.tistory.com 설치하고 오세요! npx를 이용해서 시작하겠습니다 npm install -g npx npx install -g create-react-app n.. 이전 1 2 3 4 5 다음