[React] 리덕스 툴킷으로 slice 파일 생성하기
☘️myInfoSlice.js import { createSlice } from "@reduxjs/toolkit"; import axios from "axios"; const myInfoSlice = createSlice({ name: "myInfo", initialState: { email: "", nickName: "", gender: "", birth: "", src: "", }, reducers: { setInfo(state, action) { const { email, nickName, gender, birthDay, fileId } = action.payload; const birth = birthDay.substring(0, 4) + "." + birthDay.substring(4, 6) +..