mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 21:41:57 +00:00
11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
import CustomersTable from "@/components/pages/master-data/customer/CustomersTable";
|
|
|
|
const Customer = () => {
|
|
return (
|
|
<section className="w-full p-4">
|
|
<CustomersTable />
|
|
</section>
|
|
)
|
|
};
|
|
|
|
export default Customer; |