mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-04-06 09:59:20 +01:00
16 lines
668 B
TypeScript
16 lines
668 B
TypeScript
import create, { UseStore } from "zustand";
|
|
|
|
interface TeachingBubbleState {
|
|
showPostgreTeachingBubble: boolean;
|
|
showResetPasswordBubble: boolean;
|
|
setShowPostgreTeachingBubble: (showPostgreTeachingBubble: boolean) => void;
|
|
setShowResetPasswordBubble: (showResetPasswordBubble: boolean) => void;
|
|
}
|
|
|
|
export const usePostgres: UseStore<TeachingBubbleState> = create((set) => ({
|
|
showPostgreTeachingBubble: false,
|
|
showResetPasswordBubble: false,
|
|
setShowPostgreTeachingBubble: (showPostgreTeachingBubble: boolean) => set({ showPostgreTeachingBubble }),
|
|
setShowResetPasswordBubble: (showResetPasswordBubble: boolean) => set({ showResetPasswordBubble }),
|
|
}));
|