Property 'myLocationReducer' does not exist on type 'DefaultRootState'
https://stackoverflow.com/questions/60777859/ts2339-property-tsreducer-does-not-exist-on-type-defaultrootstate
rootReducer가 있는 곳에서, RootState 타입을 만들고, 실제 reducer에 접근하고자 하는 코드에서 타입을 지정해주니 해결 const myCurrentLocation = useSelector( (store: RootState) => store.myLocationReducer, );
rootReducer가 있는 곳에서, RootState 타입을 만들고, 실제 reducer에 접근하고자 하는 코드에서 타입을 지정해주니 해결
const myCurrentLocation = useSelector( (store: RootState) => store.myLocationReducer, );