From de7361718def0f6bb32294bb074841ba2c0a3ce6 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Tue, 21 Feb 2023 16:25:35 +0700 Subject: fix --- src/pages/my/invoice/[id].jsx | 13 +++++++++++++ src/pages/my/invoices.jsx | 10 ++++++++++ src/pages/my/menu.jsx | 4 ++-- 3 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 src/pages/my/invoice/[id].jsx create mode 100644 src/pages/my/invoices.jsx (limited to 'src/pages') diff --git a/src/pages/my/invoice/[id].jsx b/src/pages/my/invoice/[id].jsx new file mode 100644 index 00000000..a3cbeb5c --- /dev/null +++ b/src/pages/my/invoice/[id].jsx @@ -0,0 +1,13 @@ +import AppLayout from "@/core/components/layouts/AppLayout" +import InvoiceComponent from "@/lib/invoice/components/Invoice" +import { useRouter } from "next/router" + +export default function Invoice() { + const router = useRouter() + + return ( + + + + ) +} \ No newline at end of file diff --git a/src/pages/my/invoices.jsx b/src/pages/my/invoices.jsx new file mode 100644 index 00000000..04842110 --- /dev/null +++ b/src/pages/my/invoices.jsx @@ -0,0 +1,10 @@ +import AppLayout from "@/core/components/layouts/AppLayout" +import InvoicesComponent from "@/lib/invoice/components/Invoices" + +export default function Invoices() { + return ( + + + + ) +} \ No newline at end of file diff --git a/src/pages/my/menu.jsx b/src/pages/my/menu.jsx index 69e4b8bb..e2a11390 100644 --- a/src/pages/my/menu.jsx +++ b/src/pages/my/menu.jsx @@ -47,10 +47,10 @@ export default function Menu() { Daftar Transaksi - + Invoice & Faktur Pajak - + Wishlist -- cgit v1.2.3