diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-22 14:00:00 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-22 14:00:00 +0700 |
| commit | 7265295454801c1d921385a4b67fb3780b46771e (patch) | |
| tree | a45e7c0add3641d6a234c3b610adc72a08631616 /src/pages | |
| parent | 757b69f4d814ec4890c209f7a9fdf3d9940157d9 (diff) | |
fix
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/shop/checkout/finish.jsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/pages/shop/checkout/finish.jsx b/src/pages/shop/checkout/finish.jsx new file mode 100644 index 00000000..7a1aa05d --- /dev/null +++ b/src/pages/shop/checkout/finish.jsx @@ -0,0 +1,13 @@ +import BasicLayout from "@/core/components/layouts/BasicLayout"; +import FinishCheckoutComponent from "@/lib/checkout/components/FinishCheckout"; +import { useRouter } from "next/router"; + +export default function Finish() { + const router = useRouter() + + return ( + <BasicLayout> + <FinishCheckoutComponent id={router.query.id || 0} /> + </BasicLayout> + ) +}
\ No newline at end of file |
