Spaces:
Build error
Build error
feat: initialize Zustand store for match management with add and update score functionalities.
Browse files- lib/store.ts +1 -1
lib/store.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
import { create } from 'zustand';
|
| 2 |
-
|
| 3 |
// Actually, standard zustand pattern for undo/redo is easier to implement manually or use a library.
|
| 4 |
// Since I can't install 'zundo' easily without node, I will implement a simple history stack manually.
|
| 5 |
|
|
|
|
| 1 |
import { create } from 'zustand';
|
| 2 |
+
|
| 3 |
// Actually, standard zustand pattern for undo/redo is easier to implement manually or use a library.
|
| 4 |
// Since I can't install 'zundo' easily without node, I will implement a simple history stack manually.
|
| 5 |
|