refactor: rename folder
This commit is contained in:
9
app/customer-form/[id]/page.tsx
Normal file
9
app/customer-form/[id]/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
'use client';
|
||||
|
||||
export default function SingleCustomerForm({
|
||||
params
|
||||
}: {
|
||||
params: { id: string };
|
||||
}) {
|
||||
return <div>Module {params.id}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user