blob: efb35db958d59232ae539b42137814100bce9313 (
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
|
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 QuotationComponent from '@/lib/quotation/components/Quotation'
export default function Quotation() {
return (
<IsAuth>
<MobileView>
<AppLayout title='Quotation'>
<QuotationComponent />
</AppLayout>
</MobileView>
<DesktopView>
<BasicLayout>
<QuotationComponent />
</BasicLayout>
</DesktopView>
</IsAuth>
)
}
|