0rich.com
[React] API 호출 후 바로 Mobx 스토어에 저장하는 방법
UsersAPI.getMypage(user.email).then(async (res) => { if (res.data) { MyInsuranceStore.data = res.data; } });useEffect안에서 그냥 호출 후에스토어에 저장시키면 됨.배얼 저장시키기.
영리치