import React from 'react';

const ShopCard = ({ shop, onClick }) => {
    return (
        <div className="card-container" onClick={onClick}>
            <h3>{shop.name}</h3>
            <p>Description: {shop.description}</p>
            <p>Number of items: {shop.items.length}</p>
            <p>Number of employees: {shop.employees.length}</p>
        </div>
    );
};

export default ShopCard;
