2025-01-14 19:10:05 +03:00

7 lines
226 B
TypeScript

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