summaryrefslogtreecommitdiff
path: root/src/pages/shop/quotation/index.jsx
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-02-27 10:49:45 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-02-27 10:49:45 +0700
commitffa261e6adef70a2845878cf93e6e492eb8cee62 (patch)
treec860ac8d127795ee813af59923305736596264c2 /src/pages/shop/quotation/index.jsx
parent14ad96a9d010790fe7a482035d6d88f36db660fe (diff)
footer
Diffstat (limited to 'src/pages/shop/quotation/index.jsx')
-rw-r--r--src/pages/shop/quotation/index.jsx9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/pages/shop/quotation/index.jsx b/src/pages/shop/quotation/index.jsx
index 744b75fe..ff8b8644 100644
--- a/src/pages/shop/quotation/index.jsx
+++ b/src/pages/shop/quotation/index.jsx
@@ -1,10 +1,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 (
- <AppLayout title='Quotation'>
- <QuotationComponent />
- </AppLayout>
+ <IsAuth>
+ <AppLayout title='Quotation'>
+ <QuotationComponent />
+ </AppLayout>
+ </IsAuth>
)
}