blob: cc64199f5474e7e2e058c947b2c0dfc64d7b63a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import BasicLayout from '@/core/components/layouts/BasicLayout'
import IsAuth from '@/lib/auth/components/IsAuth'
import FinishCheckoutComponent from '@/lib/checkout/components/FinishCheckout'
import { useRouter } from 'next/router'
export default function Finish() {
const router = useRouter()
return (
<IsAuth>
<BasicLayout>
<FinishCheckoutComponent id={router.query.id || 0} />
</BasicLayout>
</IsAuth>
)
}
|