Skip to content

Commit

Permalink
Merge pull request #115 from YAPP-Github/dev
Browse files Browse the repository at this point in the history
Release 0.1.3
  • Loading branch information
leejiho9898 authored Jul 10, 2022
2 parents 26b80a3 + cc47d85 commit 0247f69
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/components/domain/landing/LandingContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function LandingContainer() {
/**
* 로그인 되었는지 안되었는지는 나중에 리코일에서 꺼내기
*/
const [isLogin, setIsLogin] = useState(true); // FIXME: 임시 콘텐츠 연결을 위한 처리
const [isLogin, setIsLogin] = useState(false); // FIXME: 임시 콘텐츠 연결을 위한 처리
const [isModal, onToggleModal] = useToggle();
const navigate = useNavigate();

Expand All @@ -27,6 +27,17 @@ function LandingContainer() {
return (
<Container>
<MainIconBox>
<LandingBtn
size="medium"
fontWeight={700}
fullWidth
variant={'kakao'}
onClick={() => {
setIsLogin((prev) => !prev);
}}
>
테스트용 로그인 토글버튼
</LandingBtn>
<Icon src={RadiousLogo} />
<MainNameStyled src={StringLogo} alt="외딴썸" />
<TextStyled>유학생을 위한 미팅/소개팅</TextStyled>
Expand Down

0 comments on commit 0247f69

Please sign in to comment.