first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-02-12 23:25:43 -05:00
commit d8c7ec4866
1400 changed files with 90826 additions and 0 deletions
@@ -0,0 +1,46 @@
import React from "react";
const OrderDetails = () => {
return (
<table className="product-review">
<tbody>
<tr>
<th>
<span>Bluthooth Speaker</span>
</th>
<td>
<span>$123.78</span>
</td>
</tr>
<tr>
<th>
<span>Subtotal</span>
</th>
<td>
<span>$123.78</span>
</td>
</tr>
<tr>
<th>
<span>Shipping</span>
</th>
<td>
<span>$5.00</span>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>
<span>Total</span>
</th>
<td>
<span>$128.00</span>
</td>
</tr>
</tfoot>
</table>
);
};
export default OrderDetails;