blob: 744b75fe9b8f3dfe21751af914586315f1495156 (
plain)
1
2
3
4
5
6
7
8
9
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>
)
}
|