mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
import SuppliersTable from '@/components/pages/master-data/supplier/SupplierTable';
|
|
|
|
const Supplier = () => {
|
|
return (
|
|
<section className='w-full p-4'>
|
|
<SuppliersTable />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Supplier;
|