feat: agregar botones a CardPizza
This commit is contained in:
parent
19bac6ffa3
commit
8096bd2af4
1 changed files with 4 additions and 1 deletions
|
|
@ -15,7 +15,10 @@ const CardPizza = (props) => (
|
||||||
<p className="font-bold text-green-700">
|
<p className="font-bold text-green-700">
|
||||||
${props.price.toLocaleString("es-CL")}
|
${props.price.toLocaleString("es-CL")}
|
||||||
</p>
|
</p>
|
||||||
<div className="flex"></div>
|
<div className="flex gap-4">
|
||||||
|
<button className="border-black border-2 rounded-md px-4">Ver más</button>
|
||||||
|
<button className="bg-black text-white rounded-md px-4">Añadir</button>
|
||||||
|
</div>
|
||||||
</article>
|
</article>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue