import React from 'react';
// Composant Image atomique
const Image = ({ src, alt }) => {
return
;
};
// Composant Description atomique
const Description = ({ title, children }) => {
return (
{title}
{children}
);
};
// Composant Caractéristique atomique
const Characteristic = ({ label, value }) => {
return (
{label}: {value}
);
};
// Composant Détails du Produit (combinaison atomique)
export const ItemBox = ({ imageUrl, modelName, brandName, purchaseDate, price, onEdit }) => {
return (
);
};