inflearn logo
講義

講義

知識共有

Kopherさんの投稿

Kopher Kopher

@kopher

レビュー投稿数
9
平均評価
5.0

投稿 1

Q&A

6.8 zustand 강의에서 devtools 미들웨어에 대한 질문입니다.

저도 강의 수강하다 같은 문제가 있어서 해결방법 남겨봅니다 - https://zustand.docs.pmnd.rs/middlewares/devtools#all-action-names-are-labeled-as- 'anonymous' ```ts const useSessionStore = create( devtools( combine(initialState, (set) => ({ actions: { setSession: (session: Session | null) => { set({ session, isLoaded: true }, undefined, "actions.setSession"); }, }, })), ), ); ```

いいね数
1
コメント数
2
閲覧数
179