Open gincheong opened 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()); ... }