diff options
Diffstat (limited to 'src/lib/checkout/stores')
| -rw-r--r-- | src/lib/checkout/stores/useAdress.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/checkout/stores/useAdress.js b/src/lib/checkout/stores/useAdress.js new file mode 100644 index 00000000..1c17258d --- /dev/null +++ b/src/lib/checkout/stores/useAdress.js @@ -0,0 +1,6 @@ +import { create } from "zustand"; + +export const useAddress = create((set) => ({ + address: {}, + setAddress: (address) => set({ address }), +}));
\ No newline at end of file |
