import React from 'react'; import { faker } from '@faker-js/faker/locale/fr'; import PropTypes from 'prop-types'; import { Card, CardImg, HolderProvider, Media, Avatar, CustomInput, UncontrolledTooltip, AvatarAddOn, Badge, CardBody } from './../../../components'; import { randomArray, randomAvatar } from './../../../utilities'; const status = [ "success", "danger", "warning", "secondary" ]; const badges = [ "secondary" ]; const GalleryCard = (props) => ( { /* START Card */} { faker.commerce.productName() }
{ faker.system.fileName() }
Download
, ]} /> { faker.name.firstName() } { faker.name.lastName() } { faker.address.state() }, { faker.address.stateAbbr() }
{ faker.commerce.department() } { faker.commerce.department() } { faker.commerce.department() }
{ /* END Card */}
) GalleryCard.propTypes = { id: PropTypes.node }; GalleryCard.defaultProps = { id: "1" }; export { GalleryCard };