feat(FE-33): create suppliers table and forms

This commit is contained in:
randy-ar
2025-10-09 12:27:59 +07:00
parent 21cc01fe68
commit a83452a0e4
17 changed files with 1194 additions and 25 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import CustomerForm from "@/components/pages/master-data/customer/form/CustomerForm";
const AddNonstock = () => {
const AddCustomer = () => {
return (
<section className="w-full p-4 flex flex-row justify-center">
<CustomerForm/>
@@ -8,4 +8,4 @@ const AddNonstock = () => {
);
}
export default AddNonstock;
export default AddCustomer;
+3 -3
View File
@@ -1,11 +1,11 @@
import CustomersTable from "@/components/pages/master-data/customer/CustomersTable";
const Nonstock = () => {
const Customer = () => {
return (
<section>
<section className="w-full p-4">
<CustomersTable />
</section>
)
};
export default Nonstock;
export default Customer;