import React from 'react'; import faker from 'faker/locale/en_US'; import _ from 'lodash'; import PropTypes from 'prop-types'; import { Avatar, UncontrolledDropdown, DropdownToggle, IconWithBadge, Badge, ExtendedDropdown, ListGroup, ListGroupItem, Media, InputGroup, Input, InputGroupAddon, Button } from './../../components'; const messagesColors = [ "text-success", "text-danger", "text-warning" ]; const NavbarMessages = (props) => ( 6 } >
Messages
{ _.times(3, (index) => ( { faker.name.firstName() } { faker.name.lastName() } (23) Now

{ faker.lorem.sentences() }

)) }
View All
); NavbarMessages.propTypes = { className: PropTypes.string, style: PropTypes.object }; export { NavbarMessages };