티스토리 뷰

안녕하세요 강정호입니다

 

오늘은 인스타그램 클론코딩의 프론트엔드 개발을 시작해보겠습니다.

 

1. create-react-app 명령어

npx create-react-app prismagram-frontend

위와 같이 하면 리액트 앱 프로젝트 생성

 

2. 불필요한 파일 삭제

 - App.css

 - App.test.js

 - index.css

 - logo.svg

 - serviceWorker.js

 

3. 필요한 util 설치

npm add styled-components react-router-dom graphql react-apollo-hooks apollo-boost
npm add react-helmet

 

4. 리액트 앱 정상작동 확인

npm start

 

 

 

댓글