로그아웃 구현하기

Yeongsan Son·2021년 5월 26일
0
import React from 'react';
import axios from 'axios';

const Home = () => {
  const onClick = () => {
    axios.get('api/users/logout').then(res => {
      if(res.data.success) {
        props.history.push('/login'); // 로그아웃 처리되면 로그인 페이지로 리다이렉션
      }else {
        alert('로그아웃에 실패했습니다.');
      }
    })
  }
  
  return (
    <button onClick={onClick}>Logout</button>
  )
}
profile
매몰되지 않는 개발자가 되자

0개의 댓글