summaryrefslogtreecommitdiff
path: root/lib/avl/avl-atoms.ts
blob: 2683641306836f912c03f13906ba3282f4a2caa0 (plain)
1
2
3
4
5
import { atom } from 'jotai';
import type { AvlListItem } from '@/lib/avl/types';

// AVL 페이지에서 선택된 AVL 레코드
export const selectedAvlRecordAtom = atom<AvlListItem | null>(null);