mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import SalesForm from '@/components/pages/marketing/sales-orders/form/SalesForm';
|
|
|
|
const AddSalesOrder = () => {
|
|
return (
|
|
<div className='size-full p-4'>
|
|
<SalesForm />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AddSalesOrder;
|