10/24

yoon Y·2022년 1월 1일
0

[2nd_Project] WaffleCard

목록 보기
2/15
  • 유효하지 않은 props값 예외처리 해주기
if ((typeof weight === 'number' && weight < 100) || weight > 900) {
    console.warn('Text only accept`100~900` as `weight` value');
    weight = weight < 100 ? 100 : weight > 900 ? 900 : weight;
  }
  • props에 어떤 값과 type들이 들어올 수 있는지 고려해서 전부 처리해줘야함
  • 자식 컴포넌트 import안해도 가져오게하기
Icons.ArrowBack = ArrowBack;
Icons.Edit = Edit;
Icons.Delete = Delete;
profile
#프론트엔드

0개의 댓글