diff --git a/packages/user/src/pages/SignIn.tsx b/packages/user/src/pages/SignIn.tsx index 2b1b595..5ea63f2 100644 --- a/packages/user/src/pages/SignIn.tsx +++ b/packages/user/src/pages/SignIn.tsx @@ -5,6 +5,7 @@ import { theme, Input, Button } from '@merge/design-system'; import { useState } from 'react'; import { login } from '../apis/sign'; import { Cookie } from '../utils/cookie'; +import { Link } from 'react-router-dom'; export const SignIn = () => { const [data, setData] = useState({ account_id: '', password: '' }); @@ -44,7 +45,9 @@ export const SignIn = () => { <strong>Log In</strong> - <div>스퀘어 계정으로 로그인 해주세요.</div> + <div> + 아직 계정이 없다면? <_Link to="/signup">회원가입</_Link> + </div> { const [data, setData] = useState({ id: '', password: '' }); @@ -32,7 +33,9 @@ export const SignUp = () => { <strong>Sign Up</strong> - <div>스퀘어 계정으로 로그인 해주세요.</div> + <div> + 이미 계정이 있다면? <_Link to="/signin">로그인</_Link> + </div>