gincheong / Memo

개발 관련 내용들을 메모하기 위한 용도로 만든 빈 레포지토리입니다.
0 stars 0 forks source link

React Hook과 Redux #30

Open gincheong opened 3 years ago

gincheong commented 3 years ago
import { useSelector, useDispatch } from 'react-redux';
import { getData } from '../actions';

...

export default function MyComponent() {
  const store = useSelector((store) => store.myReducer);
  const dispatch = useDispatch(); // dispatch(getData());
  ...
}