custom validator1 React - propTypes 예제로 이해하기( Custom validator ) PropTypes React는 Component간 Props을 전달할 때 Type을 명시해줄 수 있다. Type을 명시함으로써 Component의 데이터 Type을 유추할 수 있어 소스가 더욱 명료해진다. 오류Type은 콘솔로그를 통해 확인할 수 있다. 연락처를 출력하는 간단한 앱을 만들어보자. 다음처럼 ContactInfo 컴포넌트에 contact 프로퍼티값을 전달한다. 📃App.js import "./App.css"; import ContactInfo from "./components/ContactInfo"; function App() { return ( Hello ); } export default App; 📃ContactInfo.js import PropTypes from "prop-types";.. 2021. 8. 16. 이전 1 다음