Actiontype
리덕스 액션타입함수 오류
리덕스를 통해서 액션타입함수를 관리하다가 타입을 감지하지 못하는 오류가 발생했다. import { deprecated } from "typesafe-actions"; export const GET_USER = "User/GET_USER" ; export const ADD_ID = "User/ADD_ID" ; export const getUser = deprecated.createStandardAction(GET_USER)(); export const addId = (id: string) => ({ type: ADD_ID, payload: id, }); import { createReducer } from "typesafe-actions"; import { GET_USER, ADD_ID } from "./..