summaryrefslogtreecommitdiff
path: root/atoms.ts
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-05-28 00:34:39 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-05-28 00:34:39 +0000
commitc2aa314651219686f78700e87135485a8be91264 (patch)
tree0b7e240d2432863754cfed47ff4020d7edc0c5be /atoms.ts
parentb7f5af1f4b6691052bb3e77968a478ff27696095 (diff)
(대표님) 커스텀 훅, ATOM 상태관리, 타입 정의 커밋
Diffstat (limited to 'atoms.ts')
-rw-r--r--atoms.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/atoms.ts b/atoms.ts
index 54847ca7..fe5cebd3 100644
--- a/atoms.ts
+++ b/atoms.ts
@@ -1,3 +1,5 @@
import { atom } from "jotai"
-export const selectedUserIdsAtom = atom<number[]>([]) \ No newline at end of file
+export const selectedUserIdsAtom = atom<number[]>([])
+export const selectedModeAtom = atom<"IM" | "ENG">("IM")
+