소개
게시글
질문&답변
2021.09.13
이벤트
다른데서는 예를들면 ~ 이런식으로 공식문서에 검색하면 안나오는 onCreate, onRemove 이런것들을 써넣더라구여.. 그래서 이벤트 이름을 저렇게 자기가 임의로 지어도 되는건가 싶어서요..
- 0
- 2
- 373
질문&답변
2021.08.31
mainPosts
제가 mainPosts 변수명을 mainPostArr 로 바꿔서 한번 적용해 볼려 했는데 return안에도 혹은 다른곳들도 다 state.mainPosts로 쓰인 mainPosts들 이어서.. mainPostArr라는 변수명을이 어디에 쓰이는지 모르겠어요.. ㅜㅜ case ADD_COMMENT_SUCCESS: { ~나머지 코드들~ const mainPostArr = [...state.mainPosts]; //mainPostArr로 변경 mainPostArr[postIndex] = posts; //여기도 mainPostArr로 변경 //이 다음엔 mainPostArr를 어디에 적용해야 할까요?.. return { ...state, mainPosts, //여기는 mainPostArr로 바꾸면 안되는거 같고.. commentIsBeingAdded: false, commentIsAdded: true, }; }
- 0
- 2
- 285
질문&답변
2021.08.25
eslint
"rules": { "no-undef": "error", "prettier/prettier": "error", "jsx-a11y/label-has-associated-control": "off", "jsx-a11y/anchor-is-valid": "off", "no-console": "off", "no-underscore-dangle": "off", "react/forbid-prop-types": "off", "react/jsx-filename-extension": "off", "react/jsx-one-expression-per-line": "off", "object-curly-newline": "off", "linebreak-style": "off", "no-param-reassign": "off" } 추가했는데 에러가 안뜨네요 ㅜㅡㅜ.. 왜 에러를 내고 싶은데 못내게 하는지..아이러니,,
- 0
- 4
- 311
질문&답변
2021.08.25
eslint
아 그 영상에서 CommentForm 파일에서 제로초님이 useDispatch 모르고 안적으셨을때 dispatch변수 아래에 줄이 그여있었어서 저도 실험해볼려고 useDispatch 주석 처리해봤는데 dispatch에 줄이 안그이더라구요.. 그래서 .. 아 그리고 저 "jsx-a11y"는 위에서는 추가 안했었는데 방금 추가 했어요!
- 0
- 4
- 311
질문&답변
2021.07.23
부모 컴포넌트로 state 값을 업데이트 할 때
위 처럼하면 다른데는 모르겠지만 타이핑을 쳐야 될때는 자식컴포넌트에 state값이 필요한거로 알고있어요
- 1
- 3
- 222