function Price({ value }) {
return {value.toFixed(2)} €;
}
function ProductCard({ product }) {
return (
);
}
function ProductList({ products }) {
return (
{products.map(product => (
))}
);
}
// Utilisation
const products = [
{ id: 1, name: 'Laptop', price: 999.99 },
{ id: 2, name: 'Phone', price: 699.50 }
];