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

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