sirjosev commited on
Commit
32054c0
·
1 Parent(s): 8bcdb6d

feat: initialize Zustand store for match management with add and update score functionalities.

Browse files
Files changed (1) hide show
  1. lib/store.ts +1 -1
lib/store.ts CHANGED
@@ -1,5 +1,5 @@
1
  import { create } from 'zustand';
2
- import { temporal } from 'zundo'; // We might need to add zundo to dependencies if not there, but for now I'll write manual undo/redo or just simulate it if I can't add packages.
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