Upload product.tsx
Browse files
app/components/product.tsx
CHANGED
|
@@ -33,7 +33,7 @@ export function Product({productlist}){
|
|
| 33 |
<span className="grid grid-cols-1 gap-4 text-cyan-500 text-xs">{product.description}</span>
|
| 34 |
</div>
|
| 35 |
<div className="col-span-8 border-b border-white"><button type="button" onClick={() => remove(index)}
|
| 36 |
-
className="text-white
|
| 37 |
|
| 38 |
</div>
|
| 39 |
</div>
|
|
|
|
| 33 |
<span className="grid grid-cols-1 gap-4 text-cyan-500 text-xs">{product.description}</span>
|
| 34 |
</div>
|
| 35 |
<div className="col-span-8 border-b border-white"><button type="button" onClick={() => remove(index)}
|
| 36 |
+
className="text-white text-xs bg-blue-700 rounded-lg px-2 py-1 me-2 mb-2 dark:bg-blue-600 dark:hover:bg-blue-700 focus:outline-none dark:focus:ring-blue-800">Remove</button>
|
| 37 |
|
| 38 |
</div>
|
| 39 |
</div>
|