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