// store.ts
import { createStore } from './createStore'

export const useCounter = createStore({ count: 0 });


