-
[React] 리액트 프로젝트 시작하기WEB/ReactJS 2022. 10. 10. 15:27
1. React 프로젝트 만들기
npx create-react-app 폴더명
- vsc에서 해당 폴더 열기
code react-project
다음과 같은 폴더와 파일들이 만들어진 것을 볼 수 있음! 2. PropTypes
- 설치
npm i prop-types
- 사용
import PropTypes from "prop-types"; function Button({text}){ return <button>{text}</button>; }; Button.propTypes = { text: PropTypes.string.isRequired, };
728x90'WEB > ReactJS' 카테고리의 다른 글
[React] React Router (0) 2023.06.28 [React] 리액트 styled-components (0) 2023.06.26 [React] React와 Node 연결 (0) 2022.10.12