WEB/ReactJS
[React] 리액트 프로젝트 시작하기
다콩잉
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