import React from 'react'; import PropTypes from 'prop-types'; import { faker } from '@faker-js/faker/locale/fr'; import { Card, Media, Avatar, AvatarAddOn } from './../../../components'; import { randomArray, randomAvatar } from './../../../utilities'; const status = [ "warning", "danger", "success", "secondary" ]; const ChatLeft = (props) => ( , ]} />

{ faker.lorem.paragraph() }

{ faker.name.firstName() } { faker.name.firstName() } 13-Jun-2015, 08:13
) ChatLeft.propTypes = { cardClassName: PropTypes.node }; ChatLeft.defaultProps = { cardClassName: "bg-white" }; export { ChatLeft };