import React from 'react'; import { faker } from '@faker-js/faker/locale/fr'; import PropTypes from 'prop-types'; import { Link } from 'react-router-dom'; import { Badge, Avatar, UncontrolledTooltip, CustomInput, AvatarAddOn, Media } from './../../../../components'; import { randomArray, randomAvatar } from './../../../../utilities'; const status = [ "warning", "danger", "success", "secondary" ]; const tag = [ "primary", "secondary", "info" ]; const TrTableInbox = (props) => ( { (Math.round(Math.random())) ? ( New Message ) : ( ) }
Add To Favorites
, ]} />
{ faker.name.firstName() } { faker.name.lastName() } { faker.address.state() }
{ faker.company.catchPhrase() }
{ faker.lorem.sentence() }
{ faker.commerce.department() } 30-Jun-2014
01:54 PM
) TrTableInbox.propTypes = { id: PropTypes.string }; export { TrTableInbox };