let data = createSlice({
name: 'data',
initialState: [
{ id: 0, name: 'White and Black', count: 2 },
{ id: 2, name: 'Grey Yordan', count: 1 },
],
reducers: {
countUp(state) {
state.count += 1;
},
},
});
export let { countUp } = data.actions;
알려주신 순서 방법대로 export import 다 하고 useDispatch도 해주고 눌렀더니
Immer only supports setting array indices and the 'length' property 요 에러 뜨는데 구글링해도 모르겠어서 질문드려요