12 lines
432 B
TypeScript
12 lines
432 B
TypeScript
// Export all stores from a single location
|
|
export { useAuthStore } from "./authStore";
|
|
export { useContactsStore } from "./contactsStore";
|
|
export { useRecipientsStore } from "./recipientsStore";
|
|
export { useTabStore } from "./tabStore";
|
|
export { usePinStore } from "./pinStore";
|
|
export { useUiStore } from "./uiStore";
|
|
export { useLangStore } from "./langStore";
|
|
|
|
// Re-export types
|
|
export type { Contact } from "./contactsStore";
|