Not quite the style yet... But!
This commit is contained in:
39
GrossesMitaines/grosses-mitaines-ui/src/pages/Morceaux.js
Normal file
39
GrossesMitaines/grosses-mitaines-ui/src/pages/Morceaux.js
Normal file
@@ -0,0 +1,39 @@
|
||||
import { useEffect } from "react";
|
||||
import ItemList from "../components/ItemList";
|
||||
|
||||
const Morceaux = () => {
|
||||
|
||||
const products = [
|
||||
{
|
||||
"name": "Ceinture flèchée",
|
||||
"status": "Disponible!",
|
||||
"price": "85,86",
|
||||
"imageUrl": "/images/ceintureflechee.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Pantoufles du Canadien en Phentex",
|
||||
"status": "Non disponible...",
|
||||
"price": "15,64",
|
||||
"imageUrl": "/images/pantouflesCH.jpg"
|
||||
},
|
||||
{
|
||||
"name": "Jean-Luc Mongrain",
|
||||
"status": "Disponible!",
|
||||
"price": "1453,12",
|
||||
"imageUrl": "/images/jeanlucmongrain.jpg"
|
||||
}
|
||||
];
|
||||
|
||||
useEffect(() => {
|
||||
document.title = 'Morceaux';
|
||||
});
|
||||
|
||||
return (
|
||||
<div className="morceaux-container">
|
||||
<h3>QWERTY</h3>
|
||||
<ItemList items={products} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Morceaux;
|
Reference in New Issue
Block a user