7 lines
226 B
TypeScript
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) }));
|