summaryrefslogtreecommitdiff
path: root/src/pages/shop/quotation/index.jsx
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-02-24 10:05:06 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-02-24 10:05:06 +0700
commit047aacc646c86b316c4d42fb720cbc841426df27 (patch)
treec9669477426181d80c6be63e903c16672cbc158b /src/pages/shop/quotation/index.jsx
parentc6b0402fb0ba7d56b1e060d36e98d934661d43d4 (diff)
fix
Diffstat (limited to 'src/pages/shop/quotation/index.jsx')
-rw-r--r--src/pages/shop/quotation/index.jsx10
1 files changed, 10 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..744b75fe
--- /dev/null
+++ b/src/pages/shop/quotation/index.jsx
@@ -0,0 +1,10 @@
+import AppLayout from '@/core/components/layouts/AppLayout'
+import QuotationComponent from '@/lib/quotation/components/Quotation'
+
+export default function Quotation() {
+ return (
+ <AppLayout title='Quotation'>
+ <QuotationComponent />
+ </AppLayout>
+ )
+}