import React from 'react'; import { faker } from '@faker-js/faker/locale/fr'; import { Card, CardBody, Badge, CardFooter, HolderProvider, Avatar, UncontrolledButtonDropdown, DropdownToggle, CardImg, DropdownMenu, DropdownItem, AvatarAddOn } from './../../../components'; import { randomArray, randomAvatar } from './../../../utilities'; const badges = [ "secondary" ]; const avatarStatus = [ "secondary", "warning", "danger", "success" ]; const FilesCardGrid = () => ( { /* START Card */}
{ faker.commerce.productName() }
{ faker.finance.amount() } Mb
{ faker.system.commonFileName() }
{ faker.internet.userName() }
{ faker.date.weekday() }, 12 { faker.date.month() }, 2018
12:34 PM
{ faker.commerce.department() } { faker.commerce.department() } { faker.commerce.department() }
, ]} /> , ]} /> , ]} />
Details Share Download Delete Edit Copy
{ /* END Card */}
) export { FilesCardGrid };