summaryrefslogtreecommitdiff
path: root/src/pages/shop/checkout/index.jsx
blob: 015a11b3c3abb3f4194491e292e587d3381b7a2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import AppLayout from '@/core/components/layouts/AppLayout'
import IsAuth from '@/lib/auth/components/IsAuth'
import CheckoutComponent from '@/lib/checkout/components/Checkout'

export default function Checkout() {
  return (
    <IsAuth>
      <AppLayout title='Checkout'>
        <CheckoutComponent />
      </AppLayout>
    </IsAuth>
  )
}