import React from 'react'; import _ from 'lodash'; import faker from 'faker/locale/en_US'; import { Media, Avatar, AvatarAddOn } from './../../../components'; import { randomAvatar } from './../../../utilities'; const TrTableInvoices = () => ( { _.times(6, (index) => ( { faker.company.companyName() }
{ faker.company.bsBuzz() } ${ faker.commerce.price() } 25-May-2018 , ]} /> { faker.name.firstName() } { faker.name.lastName() }

{ faker.name.jobTitle() }

{ faker.internet.exampleEmail() }
{ faker.phone.phoneNumber() } View )) }
) export { TrTableInvoices };