import { type ContactsStore, createContactsSlice } from './contacts'; import { create } from 'zustand'; type Store = ContactsStore; export const useBoundStore = create()((...a) => ({ ...createContactsSlice(...a) }));