4. Netflix 앱 만들기
Create React App으로 리액트 설치#
npx create-react-app netflix-app- 사용 api : https://www.themoviedb.org/
The Movie DB API 요청을 위한 Axios 인스턴스 생성 및 요청 보내기#
Axios 란 무엇인가?#
- Axios는 브라우저, Node.js를 위한 Promise API를 활용하는 HTTP 비동기 통신 라이브러리
Axios 사용 방법#
- axios 모듈 설치
npm install axios --save
Axios 인스턴스화 하는 이유#
- 중복된 부분을 계속 입력하지 않아도 되기 때문에
Styled Component 란?#
Styled Component 란?#
- Styled Component란 Css-in-JS라고 하는 Javascript 파일 안에서 CSS를 처리 할 수 있게 해주는 대표적인 라이브러리