summaryrefslogtreecommitdiff
path: root/lib/avl/avl-atoms.ts
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-09-15 01:23:00 +0000
committerjoonhoekim <26rote@gmail.com>2025-09-15 01:23:00 +0000
commite7818a457371849e29519497ebf046f385f05ab6 (patch)
tree9bf08ba1b31a512c481dc521c9dd7c90091a75b8 /lib/avl/avl-atoms.ts
parent3f293c90beb58ce206a66ff444d7acfc41b56429 (diff)
(김준회) AVL 기능 구현 1차 및 벤더풀 E/B 구분 개선
Diffstat (limited to 'lib/avl/avl-atoms.ts')
-rw-r--r--lib/avl/avl-atoms.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/avl/avl-atoms.ts b/lib/avl/avl-atoms.ts
new file mode 100644
index 00000000..26836413
--- /dev/null
+++ b/lib/avl/avl-atoms.ts
@@ -0,0 +1,5 @@
+import { atom } from 'jotai';
+import type { AvlListItem } from '@/lib/avl/types';
+
+// AVL 페이지에서 선택된 AVL 레코드
+export const selectedAvlRecordAtom = atom<AvlListItem | null>(null);