Notification.jsx 988B

12345678910111213141516171819202122232425262728293031
  1. import React from 'react'
  2. // import PropTypes from 'prop-types'
  3. const Notification = props => {
  4. return (
  5. <li className='header__menu__rightside__itemnotification'>
  6. <div className='header__menu__rightside__itemnotification__timeline dropdown'>
  7. <button
  8. type='button'
  9. className='timeline__btnnotif btnnavbar btn btn-outline-primary dropdown-toggle'
  10. id='headerNotificationBtn'
  11. data-toggle='dropdown'
  12. aria-haspopup='true'
  13. aria-expanded='false'
  14. >
  15. Notification
  16. </button>
  17. <div className='timeline__subdropdown dropdown-menu' aria-labelledby='headerDropdownMenuButton'>
  18. <div className='timeline__subdropdown__text dropdown-item' >
  19. Conversation archivé
  20. </div>
  21. <div className='timeline__subdropdown__text dropdown-item' >
  22. Fichier supprimé
  23. </div>
  24. </div>
  25. </div>
  26. </li>
  27. )
  28. }
  29. export default Notification