// 직접 끝까지 불러줘야함
const filters = useSelector(state => state.filterV2.common.filters);
// 이렇게 다이렉트로 박아야 === 비교시 제대로 비교
// state => state로 하면 다른거 바껴도 바뀔때마다 컴포넌트 부름
// 두번째 인자활용
// 리덕스 기본제공 shallow 비교나 필요하면 deepEqual 까지 이용
// false면 다시 state 소환한다
const { isLoading, isApiCalling } = useSelector(
state => state.loadingState,
shallowEqual
);
미들웨어를 쓸것인가
참고
15 performance tips which you need to know when building React.js application