LogoutBtn.js 429 B

12345678910111213141516
  1. import React from 'react'
  2. import { connect } from 'react-redux'
  3. import Button from 'react-bootstrap/esm/Button'
  4. import { Link } from 'react-router-dom'
  5. import { actionFullLogout } from '../actions'
  6. const LogoutBtn = ({ onLogout }) => (
  7. <>
  8. <Link className='nav' to='/login' onClick={() => onLogout()}>Sign Out</Link>
  9. </>
  10. )
  11. export const CLogoutBtn = connect(null, { onLogout: actionFullLogout })(
  12. LogoutBtn
  13. )