summaryrefslogtreecommitdiff
path: root/src/pages/my/quotations/index.jsx
blob: f850de76c85e87ad591d2110f7d8169ca637436c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import Seo from '@/core/components/Seo'
import AppLayout from '@/core/components/layouts/AppLayout'
import BasicLayout from '@/core/components/layouts/BasicLayout'
import DesktopView from '@/core/components/views/DesktopView'
import MobileView from '@/core/components/views/MobileView'
import IsAuth from '@/lib/auth/components/IsAuth'
import dynamic from 'next/dynamic'

const TransactionsComponent = dynamic(() => import('@/lib/transaction/components/Transactions'))

export default function MyQuotations() {
  return (
    <IsAuth>
      <Seo title='Quotations - Indoteknik.com' />

      <MobileView>
        <AppLayout title='Quotation'>
          <TransactionsComponent context='quotation' />
        </AppLayout>
      </MobileView>

      <DesktopView>
        <BasicLayout>
          <TransactionsComponent context='quotation' />
        </BasicLayout>
      </DesktopView>
    </IsAuth>
  )
}