Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. const [action, setAction] = useState("login"); //login is default value
  2.  
  3. <StateChanger>
  4. {action === "login" ? (
  5. <>
  6. 계정이 없다면
  7. <Link onClick={() => setAction("signup")}>회원가입</Link> //setAction: change actions`s value
  8. </>
  9. ) : (
  10. <>
  11. 계정이 있다면
  12. <Link onClick={() => setAction("login")}>로그인</Link>
  13. </>
  14. )}
  15. </StateChanger>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement