From b1415b8578370f3cea721036db4e3db63dd70104 Mon Sep 17 00:00:00 2001 From: gykoh42 <karmakoh42@naver.com> Date: Fri, 25 Oct 2024 16:27:12 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20FEAT:=20currentSectionNameState=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20#1649?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/Cabinet/recoil/atoms.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/Cabinet/recoil/atoms.ts b/frontend/src/Cabinet/recoil/atoms.ts index 36b28ade6..e87eaa663 100644 --- a/frontend/src/Cabinet/recoil/atoms.ts +++ b/frontend/src/Cabinet/recoil/atoms.ts @@ -210,6 +210,11 @@ export const targetClubUserInfoState = atom<ClubUserResponseDto>({ }, }); +export const currentFloorSectionNamesState = atom<string[]>({ + key: "currentFloorSectionNames", + default: [], +}); + export const displayStyleState = atom<DisplayStyleToggleType>({ key: "displayStyle", default: DisplayStyleToggleType.DEVICE,