diff options
Diffstat (limited to 'src/pages/shop/quotation/index.jsx')
| -rw-r--r-- | src/pages/shop/quotation/index.jsx | 10 |
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> + ) +} |
