summaryrefslogtreecommitdiff
path: root/src/pages/shop/quotation/index.jsx
blob: ff8b864404b335317cc7a3340f4975ba13007498 (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 QuotationComponent from '@/lib/quotation/components/Quotation'

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