From 2ab1f55c001d24ac6f0bf0c0b2031481cf2ee582 Mon Sep 17 00:00:00 2001 From: devwqc Date: Tue, 16 Apr 2024 21:04:14 +0900 Subject: [PATCH] =?UTF-8?q?comment:=20=ED=94=84=EB=A1=9C=EC=A0=9D=ED=8A=B8?= =?UTF-8?q?=20=ED=8C=8C=EC=9D=B4=ED=8C=85!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/contexts/LoginContext.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/contexts/LoginContext.tsx b/src/contexts/LoginContext.tsx index a3ebc2ec2..8f57253b2 100644 --- a/src/contexts/LoginContext.tsx +++ b/src/contexts/LoginContext.tsx @@ -20,6 +20,7 @@ const LoginContext = createContext(null); // user 검증이 됐다면 자동 로그인과 로그인 상태 유지하기. // 모든 컴포넌트에서 로그인 상태를 유지하고 싶은 목적으로 생성. +/** @TODO 프로젝트 파이팅!! */ export function LoginProvider({ children }: { children: ReactNode }) { const [isLogin, setIsLogin] = useState(false); const [loginUser, setLoginUser] = useState(null);