first commit

This commit is contained in:
dev-chiefworks
2024-01-10 11:05:21 -05:00
commit 2ce13271d8
1398 changed files with 91003 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;