import React from 'react'; import { Link } from 'react-router-dom'; import { faker } from '@faker-js/faker/locale/fr'; import _ from 'lodash'; import PropTypes from 'prop-types'; import { UncontrolledDropdown, DropdownToggle, IconWithBadge, Badge, ExtendedDropdown, ListGroup, ListGroupItem, Media } from './../../components'; /*eslint-disable */ const activityFeedIcons = [ , , , ]; /*eslint-enable */ const NavbarActivityFeed = (props) => ( 6 } >
Activity Feed
4
{ _.times(7, (index) => ( { activityFeedIcons[index%4] } { faker.name.firstName() } { faker.name.lastName() } changed Description to "{ faker.random.words() }"

{ faker.lorem.sentence() }

{ faker.date.past().toString() }
)) }
See All Notifications
); NavbarActivityFeed.propTypes = { className: PropTypes.string, style: PropTypes.object }; export { NavbarActivityFeed };