import React from 'react'; // Composant Image atomique const Image = ({ src, alt }) => { return {alt}; }; // 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, model, brand, purchaseDate, price, onEdit }) => { return (
Product
); };