summaryrefslogtreecommitdiff
path: root/src/routes/account/orders.tsx
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-05-25 19:11:31 -0600
committerHombreLaser <sebastian-440@live.com>2023-05-25 19:11:31 -0600
commite8fa9bd7bba125a339f11876eb5ea99d0cd301b6 (patch)
tree5d8211221680a3c214b3a16b5d179722a8add085 /src/routes/account/orders.tsx
parentda2631822f902094e691143302d6fc6b68e1cf56 (diff)
Añade historial de órdenes
Diffstat (limited to 'src/routes/account/orders.tsx')
-rw-r--r--src/routes/account/orders.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/routes/account/orders.tsx b/src/routes/account/orders.tsx
new file mode 100644
index 0000000..1e655d1
--- /dev/null
+++ b/src/routes/account/orders.tsx
@@ -0,0 +1,14 @@
+import { useLoaderData } from "react-router-dom";
+import MainContentLayout from "../../components/main_content_layout";
+import OrderTable from "../../components/order_table";
+
+
+export default function Orders() {
+ const orders = useLoaderData();
+
+ return(
+ <MainContentLayout>
+ <OrderTable orders={orders}/>
+ </MainContentLayout>
+ );
+} \ No newline at end of file