import React from 'react'; import { faker } from '@faker-js/faker/locale/fr'; import PropTypes from 'prop-types'; import { Badge, Avatar, CustomInput, UncontrolledTooltip, AvatarAddOn, Media } from './../../../../components'; import { randomArray } from './../../../../utilities'; const status = [ "secondary", "success", "warning", "danger" ]; const tag = [ "secondary", "primary", "info" ]; const TrTableClients = (props) => ( Add To Favorites , ]} /> { faker.name.firstName() } { faker.name.lastName() } { faker.name.jobTitle() } { faker.internet.email() } { faker.phone.phoneNumberFormat() } { faker.commerce.department() } ) TrTableClients.propTypes = { id: PropTypes.node }; TrTableClients.defaultProps = { id: "1" }; export { TrTableClients };