This commit is contained in:
19
src/store/settingsStore.ts
Normal file
19
src/store/settingsStore.ts
Normal file
@ -0,0 +1,19 @@
|
||||
"use client";
|
||||
|
||||
import { create } from "zustand";
|
||||
import { createJSONStorage, persist } from "zustand/middleware";
|
||||
|
||||
export const useSettingsStore = create(
|
||||
persist(
|
||||
(set: any, get: any) => ({
|
||||
userId: null,
|
||||
|
||||
setUserId: (userId: string) => set({ userId: userId }),
|
||||
}),
|
||||
{
|
||||
name: "settings", // name of the item in the storage (must be unique)
|
||||
storage: createJSONStorage(() => sessionStorage), // (optional) by default, 'localStorage' is used
|
||||
skipHydration: true,
|
||||
},
|
||||
),
|
||||
);
|
Reference in New Issue
Block a user