summaryrefslogtreecommitdiff
path: root/src/pages/shop/quotation/index.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/shop/quotation/index.jsx')
-rw-r--r--src/pages/shop/quotation/index.jsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/pages/shop/quotation/index.jsx b/src/pages/shop/quotation/index.jsx
new file mode 100644
index 00000000..ff8b8644
--- /dev/null
+++ b/src/pages/shop/quotation/index.jsx
@@ -0,0 +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 (
+ <IsAuth>
+ <AppLayout title='Quotation'>
+ <QuotationComponent />
+ </AppLayout>
+ </IsAuth>
+ )
+}